remove location test code from main branch

This commit is contained in:
2025-12-27 10:08:42 -08:00
parent c6160524da
commit a9f172edd5
3 changed files with 0 additions and 79 deletions

View File

@ -17,7 +17,6 @@
<meta property="og:image:alt" content="blue and gold icon showing a greeting card with wings" />
<!-- CSS -->
<link rel="stylesheet" href="/css/main.css">
<link rel="stylesheet" href="/css/cards.css">
</head>
<body>
<header>
@ -36,26 +35,6 @@
<p><span class="card">Card one</span> has 16 total recipients.</p>
<ol>
<li class="stop">
<svg aria-hidden="true" viewBox="0 0 32 32" focusable="false"><circle stroke="none" cx="16" cy="16" r="10"></circle></svg>
<h2>location</h2>
<img src="/img/filler0.jpg" alt="filler photo for testing"/>
</li>
<li class="stop">
<svg aria-hidden="true" viewBox="0 0 32 32" focusable="false"><circle stroke="none" cx="16" cy="16" r="10"></circle></svg>
<h2>location</h2>
<p>Some sample text</p>
</li>
<li class="stop">
<svg aria-hidden="true" viewBox="0 0 32 32" focusable="false"><circle stroke="none" cx="16" cy="16" r="10"></circle></svg>
<h2>location</h2>
<img src="/img/filler1.jpg" alt="filler photo for testing"/>
<p>Some sample text again, this time wrapping to a second line, yeah, let's make it do that.</p>
</li>
</ol>
</main>
</body>
</html>

View File

@ -17,7 +17,6 @@
<meta property="og:image:alt" content="blue and gold icon showing a greeting card with wings" />
<!-- CSS -->
<link rel="stylesheet" href="/css/main.css">
<link rel="stylesheet" href="/css/cards.css">
</head>
<body>
<header>

View File

@ -1,57 +0,0 @@
.card {
color: var(--color-accent);
}
p .card {
text-transform: uppercase;
font-weight: 700;
}
.stop {
color: var(--color-accent);
position: relative;
list-style: none;
padding-left: 1.5rem;
}
.stop:not(:last-child) {
padding-bottom: 2rem;
}
.stop:before {
background-color: var(--color-accent);
width: .1rem;
content: '';
position: absolute;
top: 0;
bottom: 0;
left: 0;
}
svg {
margin-left: -2.2rem;
width: 2rem;
fill: var(--color-accent);
float: left;
padding: .4rem .5rem 0 0;
}
@media (max-width: 650px) {
svg {
padding-top: .2rem;
}
}
.stop h2 {
margin: 0;
}
.stop img {
width: 100%;
}
.stop p {
margin: 0;
color: var(--color-text);
padding-top: .5rem;
}