Compare commits
No commits in common. "a0fee9b6b13e5cb1fd54d74943d575abec2de429" and "1420d6189211918e720af8a0360cc93b8d42f749" have entirely different histories.
a0fee9b6b1
...
1420d61892
4 changed files with 18 additions and 48 deletions
|
@ -50,32 +50,23 @@ form.index-search-form > button > label {
|
||||||
}
|
}
|
||||||
|
|
||||||
section.index-meta article {
|
section.index-meta article {
|
||||||
padding-block: 30px;
|
margin-top: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
table.index-meta {
|
div.index-meta {
|
||||||
width: 100%;
|
display: grid;
|
||||||
border-collapse: collapse;
|
grid-template-columns: 50% 50%;
|
||||||
border-spacing: 0;
|
gap: 10px;
|
||||||
}
|
width: 98%;
|
||||||
|
|
||||||
table.index-meta tr + tr > * {
|
|
||||||
padding-block-start: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.index-meta :is(th, td) {
|
|
||||||
padding: 0;
|
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
}
|
|
||||||
|
|
||||||
table.index-meta th {
|
|
||||||
color: var(--secondary);
|
color: var(--secondary);
|
||||||
text-align: left;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
table.index-meta td {
|
div.index-meta > label:nth-child(2),
|
||||||
padding-inline-start: 10px;
|
div.index-meta > label:nth-child(4),
|
||||||
|
div.index-meta > label:nth-child(6) {
|
||||||
color: var(--white);
|
color: var(--white);
|
||||||
|
width: 100%;
|
||||||
text-align: right;
|
text-align: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
@import "../global/utilities.css";
|
|
||||||
@import "../global/colors.css";
|
@import "../global/colors.css";
|
||||||
@import "../global/forms.css";
|
@import "../global/forms.css";
|
||||||
@import "../global/typography.css";
|
@import "../global/typography.css";
|
||||||
|
|
|
@ -1,13 +0,0 @@
|
||||||
/**
|
|
||||||
* Utilities
|
|
||||||
*/
|
|
||||||
|
|
||||||
.visually-hidden:not(:focus):not(:active) {
|
|
||||||
position: absolute;
|
|
||||||
width: 1px;
|
|
||||||
height: 1px;
|
|
||||||
overflow: hidden;
|
|
||||||
clip: rect(0 0 0 0);
|
|
||||||
clip-path: inset(50%);
|
|
||||||
white-space: nowrap;
|
|
||||||
}
|
|
|
@ -38,21 +38,14 @@
|
||||||
@endisset
|
@endisset
|
||||||
<section class="index-meta">
|
<section class="index-meta">
|
||||||
<article>
|
<article>
|
||||||
<table class="index-meta">
|
<div class="index-meta">
|
||||||
<caption class="visually-hidden">Meta</caption>
|
<label>Active Locations Tracked</label>
|
||||||
<tr>
|
<label>{{$count}}</label>
|
||||||
<th>Active Locations Tracked</th>
|
<label>Total Sources</label>
|
||||||
<td>{{$count}}</td>
|
<label>{{$sources}}</label>
|
||||||
</tr>
|
<label>Latest Update</label>
|
||||||
<tr>
|
<label>{{$latest_date}}</label>
|
||||||
<th>Total Sources</th>
|
</div>
|
||||||
<td>{{$sources}}</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<th>Latest Update</th>
|
|
||||||
<td>{{$latest_date}}</td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
</article>
|
</article>
|
||||||
</section>
|
</section>
|
||||||
@endsection
|
@endsection
|
Loading…
Add table
Reference in a new issue