chore: less styles, if we can
This commit is contained in:
parent
f211c70d5b
commit
f21089c472
3 changed files with 152 additions and 200 deletions
|
@ -1,10 +1,10 @@
|
||||||
<footer>
|
<footer>
|
||||||
<nav class="social__main flex--centered">
|
<nav class="flex--centered text-center">
|
||||||
{% for link in nav.social %}
|
{% for link in nav.social %}
|
||||||
{% render "partials/nav/linked-icon.liquid", name: link.name, link: link.url, icon: link.icon %}
|
{% render "partials/nav/linked-icon.liquid", name: link.name, link: link.url, icon: link.icon %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</nav>
|
</nav>
|
||||||
<nav class="links__secondary flex--centered text-center">
|
<nav class="flex--centered text-center">
|
||||||
{% for link in nav.footer %}
|
{% for link in nav.footer %}
|
||||||
{% render "partials/nav/link.liquid", page: page, link: link.name, icon: link.icon %}
|
{% render "partials/nav/link.liquid", page: page, link: link.name, icon: link.icon %}
|
||||||
{% if not forloop.last %}<span>•</span>{% endif %}
|
{% if not forloop.last %}<span>•</span>{% endif %}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<nav class="pagination flex--centered">
|
<nav class="pagination flex--centered">
|
||||||
{% if pagination.href.previous %}
|
{% if pagination.href.previous %}
|
||||||
<a href="{{ pagination.href.previous }}">
|
<a class="link--icon" href="{{ pagination.href.previous }}">
|
||||||
<button aria-label="Previous page [&>svg]:h-5 [&>svg]:w-5">
|
<button aria-label="Previous page [&>svg]:h-5 [&>svg]:w-5">
|
||||||
{% tablericon "arrow-left" "Previous" %}
|
{% tablericon "arrow-left" "Previous" %}
|
||||||
</button>
|
</button>
|
||||||
|
@ -17,7 +17,7 @@
|
||||||
{{ pagination.pageNumber | plus: 1 }} of {{ pagination.links.size }}
|
{{ pagination.pageNumber | plus: 1 }} of {{ pagination.links.size }}
|
||||||
</div>
|
</div>
|
||||||
{% if pagination.href.next %}
|
{% if pagination.href.next %}
|
||||||
<a href="{{ pagination.href.next }}">
|
<a class="link--icon" href="{{ pagination.href.next }}">
|
||||||
<button aria-label="Next page">
|
<button aria-label="Next page">
|
||||||
{% tablericon "arrow-right" "Next" %}
|
{% tablericon "arrow-right" "Next" %}
|
||||||
</button>
|
</button>
|
||||||
|
|
|
@ -134,31 +134,40 @@ blockquote {
|
||||||
border-left: 4px solid var(--gray-400);
|
border-left: 4px solid var(--gray-400);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
body svg,
|
||||||
|
html svg,
|
||||||
|
nav .tags svg,
|
||||||
|
nav .search svg {
|
||||||
|
stroke: var(--black);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* links */
|
||||||
a {
|
a {
|
||||||
color: var(--blue-600);
|
color: var(--blue-600);
|
||||||
transition-property: color;
|
transition-property: color;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* links: custom */
|
||||||
|
.main__title a,
|
||||||
|
nav a,
|
||||||
|
.links__secondary a {
|
||||||
|
color: var(--black);
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
a:hover,
|
a:hover,
|
||||||
a:focus,
|
a:focus,
|
||||||
a:active,
|
a:active {
|
||||||
.main__title h1 a:hover,
|
|
||||||
.main__title h1 a:focus,
|
|
||||||
.main__title h1 a:active,
|
|
||||||
footer .links__secondary a:hover,
|
|
||||||
footer .links__secondary a:focus,
|
|
||||||
footer .links__secondary a:active {
|
|
||||||
color: var(--blue-800);
|
color: var(--blue-800);
|
||||||
}
|
}
|
||||||
|
|
||||||
a > svg {
|
a:has(svg) svg {
|
||||||
stroke: var(--blue-600);
|
stroke: var(--blue-600);
|
||||||
transition-property: stroke;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
a > svg:hover,
|
a:has(svg):hover svg,
|
||||||
a > svg:focus,
|
a:has(svg):active svg,
|
||||||
a > svg:active {
|
a:has(svg):focus svg {
|
||||||
stroke: var(--blue-800);
|
stroke: var(--blue-800);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -187,7 +196,6 @@ h1, h2, h3, h4, h5, h6 {
|
||||||
hr {
|
hr {
|
||||||
height: 1px;
|
height: 1px;
|
||||||
background-color: var(--gray-200);
|
background-color: var(--gray-200);
|
||||||
width: 100%;
|
|
||||||
border: 0;
|
border: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -196,24 +204,6 @@ hr.footnotes-sep {
|
||||||
margin: 2.5rem 0;
|
margin: 2.5rem 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* layout */
|
|
||||||
.main__wrapper {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
min-height: 100vh;
|
|
||||||
}
|
|
||||||
|
|
||||||
main {
|
|
||||||
flex: 1 1 0%;
|
|
||||||
width: 80%;
|
|
||||||
margin-left: auto;
|
|
||||||
margin-right: auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
.default__wrapper {
|
|
||||||
padding-top: 2rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* header */
|
/* header */
|
||||||
.main__title {
|
.main__title {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
@ -230,6 +220,106 @@ main {
|
||||||
line-height: var(--line-height-2xl);
|
line-height: var(--line-height-2xl);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* nav */
|
||||||
|
nav ul {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
list-style: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
nav ul li {
|
||||||
|
margin-right: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
nav svg {
|
||||||
|
margin-top: .125rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
nav a:hover svg,
|
||||||
|
nav a:active svg,
|
||||||
|
nav a:focus svg,
|
||||||
|
nav svg:hover,
|
||||||
|
nav svg:active,
|
||||||
|
nav svg:focus {
|
||||||
|
stroke-width: var(--stroke-width-bold);
|
||||||
|
}
|
||||||
|
|
||||||
|
nav ul li:last-child {
|
||||||
|
margin-right: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.active,
|
||||||
|
.active svg {
|
||||||
|
cursor: not-allowed;
|
||||||
|
}
|
||||||
|
|
||||||
|
.active {
|
||||||
|
color: var(--blue-600);
|
||||||
|
}
|
||||||
|
|
||||||
|
.active svg {
|
||||||
|
stroke: var(--blue-600);
|
||||||
|
}
|
||||||
|
|
||||||
|
.active svg:hover {
|
||||||
|
stroke-width: var(--stroke-width-default);
|
||||||
|
}
|
||||||
|
|
||||||
|
.at svg {
|
||||||
|
stroke: var(--brand-proton) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.brand-github svg {
|
||||||
|
stroke: var(--brand-github) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.brand-mastodon svg {
|
||||||
|
stroke: var(--brand-mastodon) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.brand-lastfm svg {
|
||||||
|
stroke: var(--brand-lastfm) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.device-tv svg {
|
||||||
|
stroke: var(--brand-trakt) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.books svg {
|
||||||
|
stroke: var(--brand-storygraph) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cup svg {
|
||||||
|
stroke: var(--brand-buy-me-a-coffee) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.heart-handshake svg {
|
||||||
|
stroke: var(--webrings) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.rss svg {
|
||||||
|
stroke: var(--brand-rss) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* layout */
|
||||||
|
.default__wrapper {
|
||||||
|
padding-top: 2rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.main__wrapper {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
min-height: 100vh;
|
||||||
|
}
|
||||||
|
|
||||||
|
main {
|
||||||
|
flex: 1 1 0%;
|
||||||
|
width: 80%;
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* now */
|
||||||
.now__topper,
|
.now__topper,
|
||||||
article {
|
article {
|
||||||
border-bottom: 1px solid var(--gray-200);
|
border-bottom: 1px solid var(--gray-200);
|
||||||
|
@ -243,112 +333,6 @@ article {
|
||||||
margin-bottom: 1rem;
|
margin-bottom: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* nav */
|
|
||||||
nav ul {
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
list-style: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
nav ul li {
|
|
||||||
margin-right: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.main__title h1 a,
|
|
||||||
nav ul li a,
|
|
||||||
footer .links__secondary a {
|
|
||||||
color: var(--black);
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
nav svg {
|
|
||||||
margin-top: .125rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
nav svg:hover,
|
|
||||||
nav svg:active,
|
|
||||||
nav svg:focus {
|
|
||||||
stroke-width: var(--stroke-width-bold);
|
|
||||||
}
|
|
||||||
|
|
||||||
nav .at svg {
|
|
||||||
stroke: var(--brand-proton);
|
|
||||||
}
|
|
||||||
|
|
||||||
nav .brand-github svg {
|
|
||||||
stroke: var(--brand-github);
|
|
||||||
}
|
|
||||||
|
|
||||||
nav .brand-mastodon svg {
|
|
||||||
stroke: var(--brand-mastodon);
|
|
||||||
}
|
|
||||||
|
|
||||||
nav .brand-lastfm svg {
|
|
||||||
stroke: var(--brand-lastfm);
|
|
||||||
}
|
|
||||||
|
|
||||||
nav .device-tv svg {
|
|
||||||
stroke: var(--brand-trakt);
|
|
||||||
}
|
|
||||||
|
|
||||||
nav .books svg {
|
|
||||||
stroke: var(--brand-storygraph);
|
|
||||||
}
|
|
||||||
|
|
||||||
nav .cup svg {
|
|
||||||
stroke: var(--brand-buy-me-a-coffee);
|
|
||||||
}
|
|
||||||
|
|
||||||
nav .heart-handshake svg {
|
|
||||||
stroke: var(--webrings);
|
|
||||||
}
|
|
||||||
|
|
||||||
nav .rss svg {
|
|
||||||
stroke: var(--brand-rss);
|
|
||||||
}
|
|
||||||
|
|
||||||
body svg,
|
|
||||||
html svg,
|
|
||||||
.link--icon,
|
|
||||||
.pagination button.disabled > svg,
|
|
||||||
.pagination button.disabled > svg:hover,
|
|
||||||
.pagination button.disabled > svg:focus,
|
|
||||||
.pagination button.disabled > svg:active,
|
|
||||||
nav .tags svg,
|
|
||||||
nav .search svg {
|
|
||||||
stroke: var(--black);
|
|
||||||
}
|
|
||||||
|
|
||||||
nav .tags svg:hover,
|
|
||||||
nav .tags svg:focus,
|
|
||||||
nav .tags svg:active,
|
|
||||||
nav .search svg:hover,
|
|
||||||
nav .search svg:focus,
|
|
||||||
nav .search svg:active {
|
|
||||||
stroke: var(--blue-800);
|
|
||||||
}
|
|
||||||
|
|
||||||
nav ul li:last-child {
|
|
||||||
margin-right: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.active,
|
|
||||||
.active svg {
|
|
||||||
color: var(--blue-600);
|
|
||||||
stroke: var(--blue-600);
|
|
||||||
cursor: not-allowed;
|
|
||||||
}
|
|
||||||
|
|
||||||
.active svg:hover {
|
|
||||||
stroke-width: var(--stroke-width-default);
|
|
||||||
}
|
|
||||||
|
|
||||||
.link--icon:hover,
|
|
||||||
.link--icon:active,
|
|
||||||
.link--icon:focus {
|
|
||||||
stroke: var(--blue-800);
|
|
||||||
}
|
|
||||||
|
|
||||||
.pagination button {
|
.pagination button {
|
||||||
background: none;
|
background: none;
|
||||||
padding-left: 0;
|
padding-left: 0;
|
||||||
|
@ -357,49 +341,38 @@ nav ul li:last-child {
|
||||||
|
|
||||||
.pagination button > svg {
|
.pagination button > svg {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
stroke: var(--blue-600);
|
|
||||||
transition-property: stroke;
|
|
||||||
}
|
|
||||||
|
|
||||||
.pagination button > svg:hover,
|
|
||||||
.pagination button > svg:focus,
|
|
||||||
.pagination button > svg:active {
|
|
||||||
stroke: var(--blue-800);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.pagination button.disabled > svg {
|
.pagination button.disabled > svg {
|
||||||
opacity: .5;
|
opacity: .5;
|
||||||
cursor: not-allowed;
|
cursor: not-allowed;
|
||||||
|
stroke: var(--black);
|
||||||
stroke-width: var(--stroke-width-default);
|
stroke-width: var(--stroke-width-default);
|
||||||
}
|
}
|
||||||
|
|
||||||
.pagination .previous {
|
footer nav:first-child {
|
||||||
padding: .5rem 1rem .5rem 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
footer .social__main {
|
|
||||||
gap: 0.5rem;
|
gap: 0.5rem;
|
||||||
margin-top: 2rem;
|
margin-top: 2rem;
|
||||||
padding: 2rem 0 1rem;
|
padding: 2rem 0 1rem;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
footer .social__main svg {
|
footer nav:first-child svg {
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
footer .social__main a {
|
footer nav:first-child a {
|
||||||
width: 1.5rem;
|
width: 1.5rem;
|
||||||
height: 1.5rem;
|
height: 1.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
footer .links__secondary {
|
footer nav:last-child {
|
||||||
font-size: var(--font-size-sm);
|
font-size: var(--font-size-sm);
|
||||||
line-height: var(--line-height-sm);
|
line-height: var(--line-height-sm);
|
||||||
padding-bottom: 2rem;
|
padding-bottom: 2rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
footer .links__secondary span {
|
footer nav:last-child span {
|
||||||
margin-left: .375rem;
|
margin-left: .375rem;
|
||||||
margin-right: .375rem;
|
margin-right: .375rem;
|
||||||
}
|
}
|
||||||
|
@ -494,7 +467,7 @@ article time {
|
||||||
}
|
}
|
||||||
|
|
||||||
/* icons */
|
/* icons */
|
||||||
[data-tablericon-name] {
|
svg {
|
||||||
stroke-width: var(--stroke-width-default);
|
stroke-width: var(--stroke-width-default);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -920,12 +893,9 @@ code,
|
||||||
}
|
}
|
||||||
|
|
||||||
a,
|
a,
|
||||||
a > svg,
|
|
||||||
.webmentions__wrapper .interaction__wrapper .avatar__wrapper,
|
.webmentions__wrapper .interaction__wrapper .avatar__wrapper,
|
||||||
.media__grid .item__wrapper,
|
.media__grid .item__wrapper,
|
||||||
.pagefind-ui__search-input,
|
.pagefind-ui__search-input,
|
||||||
.link--icon svg,
|
|
||||||
.pagination button > svg,
|
|
||||||
.pill--button,
|
.pill--button,
|
||||||
input[type="text"],
|
input[type="text"],
|
||||||
input[type="email"],
|
input[type="email"],
|
||||||
|
@ -959,8 +929,7 @@ textarea {
|
||||||
.pill--button,
|
.pill--button,
|
||||||
.progress-bar,
|
.progress-bar,
|
||||||
.webring__wrapper > .webring__centered,
|
.webring__wrapper > .webring__centered,
|
||||||
footer .social__main,
|
footer nav {
|
||||||
footer .links__secondary {
|
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1022,7 +991,7 @@ h6 > svg,
|
||||||
padding-left: 2.5rem;
|
padding-left: 2.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
footer .social__main {
|
footer nav:first-child {
|
||||||
gap: .75rem;
|
gap: .75rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1105,6 +1074,12 @@ h6 > svg,
|
||||||
color: var(--blue-400);
|
color: var(--blue-400);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
a:hover,
|
||||||
|
a:focus,
|
||||||
|
a:active {
|
||||||
|
color: var(--blue-200);
|
||||||
|
}
|
||||||
|
|
||||||
hr {
|
hr {
|
||||||
background-color: var(--gray-900);
|
background-color: var(--gray-900);
|
||||||
}
|
}
|
||||||
|
@ -1114,18 +1089,6 @@ h6 > svg,
|
||||||
border-color: var(--gray-900)
|
border-color: var(--gray-900)
|
||||||
}
|
}
|
||||||
|
|
||||||
a:hover,
|
|
||||||
a:focus,
|
|
||||||
a:active,
|
|
||||||
.main__title h1 a:hover,
|
|
||||||
.main__title h1 a:focus,
|
|
||||||
.main__title h1 a:active,
|
|
||||||
footer .links__secondary a:hover,
|
|
||||||
footer .links__secondary a:focus,
|
|
||||||
footer .links__secondary a:active {
|
|
||||||
color: var(--blue-200);
|
|
||||||
}
|
|
||||||
|
|
||||||
code {
|
code {
|
||||||
color: var(--black);
|
color: var(--black);
|
||||||
background-color: var(--white);
|
background-color: var(--white);
|
||||||
|
@ -1133,11 +1096,10 @@ h6 > svg,
|
||||||
|
|
||||||
/* nav */
|
/* nav */
|
||||||
nav .brand-github svg {
|
nav .brand-github svg {
|
||||||
stroke: var(--brand-github-light);
|
stroke: var(--brand-github-light) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
nav .tags svg:hover,
|
a:has(svg):hover > svg {
|
||||||
nav .search svg:hover {
|
|
||||||
stroke: var(--blue-200);
|
stroke: var(--blue-200);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1145,17 +1107,10 @@ h6 > svg,
|
||||||
color: var(--blue-400);
|
color: var(--blue-400);
|
||||||
}
|
}
|
||||||
|
|
||||||
.active svg,
|
.active svg {
|
||||||
.pagination button > svg {
|
|
||||||
stroke: var(--blue-400)
|
stroke: var(--blue-400)
|
||||||
}
|
}
|
||||||
|
|
||||||
.pagination button > svg:hover,
|
|
||||||
.pagination button > svg:focus,
|
|
||||||
.pagination button > svg:active {
|
|
||||||
stroke: var(--blue-200);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* search */
|
/* search */
|
||||||
.pagefind-ui__form .pagefind-ui__result-link {
|
.pagefind-ui__form .pagefind-ui__result-link {
|
||||||
color: var(--blue-400);
|
color: var(--blue-400);
|
||||||
|
@ -1176,20 +1131,17 @@ h6 > svg,
|
||||||
}
|
}
|
||||||
|
|
||||||
body svg,
|
body svg,
|
||||||
html svg,
|
html svg {
|
||||||
nav .tags svg,
|
|
||||||
nav .search svg,
|
|
||||||
.pagination button.disabled > svg,
|
|
||||||
.pagination button.disabled > svg:hover,
|
|
||||||
.pagination button.disabled > svg:focus,
|
|
||||||
.pagination button.disabled > svg:active,
|
|
||||||
.link--icon {
|
|
||||||
stroke: var(--white);
|
stroke: var(--white);
|
||||||
}
|
}
|
||||||
|
|
||||||
.link--icon:hover,
|
a:has(svg) svg {
|
||||||
.link--icon:active,
|
stroke: var(--blue-400);
|
||||||
.link--icon:focus {
|
}
|
||||||
|
|
||||||
|
a:has(svg):hover svg,
|
||||||
|
a:has(svg):active svg,
|
||||||
|
a:has(svg):focus svg {
|
||||||
stroke: var(--blue-200);
|
stroke: var(--blue-200);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1222,7 +1174,7 @@ h6 > svg,
|
||||||
}
|
}
|
||||||
|
|
||||||
.main__title h1 a,
|
.main__title h1 a,
|
||||||
footer .links__secondary a,
|
footer nav:last-child a,
|
||||||
nav ul li a,
|
nav ul li a,
|
||||||
input[type="text"],
|
input[type="text"],
|
||||||
input[type="email"],
|
input[type="email"],
|
||||||
|
|
Reference in a new issue