This repository has been archived on 2025-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
coryd.dev-eleventy/src/assets/styles/index.css
2024-04-07 09:42:49 -07:00

524 lines
9.3 KiB
CSS

body,
html {
color: var(--text-color);
font-family: var(--font-sans);
font-size: var(--font-size-base);
line-height: var(--line-height-base);
background: var(--background-color);
margin: 0;
}
::-moz-selection {
color: var(--color-lightest);
background: var(--selection-color);
}
::selection {
color: var(--color-lightest);
background: var(--selection-color);
}
p,
blockquote {
line-height: var(--line-height-lg);
margin: var(--sizing-base) 0;
}
blockquote {
font-size: var(--font-size-lg);
padding-left: var(--sizing-lg);
color: var(--gray-dark);
border-left: var(--sizing-xs) solid var(--gray-dark);
word-break: break-word;
}
:is(body, html, nav .tags, nav .search) svg {
stroke: var(--text-color);
}
:is(h1, h2, h3, h4, h5, h6) > svg {
margin-right: var(--sizing-xs);
stroke-width: var(--stroke-width-bold) !important;
}
sup.footnote-ref {
line-height: var(--line-height-xs);
}
strong,
blockquote {
font-weight: var(--font-weight-bold);
}
em,
blockquote {
font-style: italic;
}
/* links */
a {
text-decoration: none;
}
a,
.active {
color: var(--accent-color);
}
a:hover,
a:focus,
a:active,
:is(.main__title, footer nav:last-child) a:hover,
:is(.main__title, footer nav:last-child) a:focus,
:is(.main__title, footer nav:last-child) a:active {
color: var(--accent-color-hover);
transition-property: color;
transition-timing-function: var(--transition-ease-in-out);
transition-duration: var(--transition-duration-default);
}
:is(
a:has(svg):hover,
a:has(svg):active,
a:has(svg):focus,
button:has(svg):hover,
button:has(svg):active,
button:has(svg):focus
) svg {
stroke: var(--accent-color-hover);
}
/* headers */
h1, h2, h3, h4, h5, h6 {
font-weight: var(--font-weight-bold);
}
h1 { font-size: var(--font-size-3xl) }
h2 { font-size: var(--font-size-2xl) }
h3 { font-size: var(--font-size-xl) }
h4 { font-size: var(--font-size-lg) }
h5 { font-size: var(--font-size-base) }
h6 { font-size: var(--font-size-sm) }
hr {
height: 1px;
background-color: var(--gray-light);
border: 0;
}
hr.large__spacing {
margin: var(--sizing-base) 0;
}
/* tables */
table {
display: block;
overflow-x: auto;
width: 100%;
max-width: fit-content;
margin: 0 auto;
white-space: nowrap;
border-radius: var(--rounded-lg);
border: 1px solid var(--gray-light);
}
table,
th,
td {
border-collapse: collapse;
}
:is(th, td):not(:last-child) {
border-right: 1px solid var(--gray-light);
}
th,
tr:not(:last-child) {
border-bottom: 1px solid var(--gray-light);
}
th,
td {
padding: var(--sizing-sm);
min-width: calc(var(--sizing-3xl) * 2);
word-break: break-word;
}
th {
font-weight: var(--font-weight-bold);
background-color: var(--gray-lighter);
text-align: center;
}
/* header */
.main__title {
width: 100%;
padding-top: var(--sizing-3xl);
display: flex;
flex-direction: column;
}
.main__title h1 {
line-height: 1.25;
margin: 0;
padding-bottom: var(--sizing-md);
font-size: var(--font-size-2xl);
line-height: var(--line-height-2xl);
}
/* nav */
nav.menu__primary {
gap: var(--sizing-md);
}
nav.menu__primary a,
nav.menu__primary span {
height: var(--sizing-xl);
}
:is(a:hover, a:active, a:focus) svg,
a svg:hover,
a svg:active,
a svg:focus,
button:hover svg,
button svg:hover,
.icon--bold > svg {
stroke-width: var(--stroke-width-bold);
}
.active,
.active svg {
cursor: not-allowed;
}
a svg,
nav .active svg,
nav ul li .active svg {
stroke: var(--accent-color);
}
.active:hover svg,
.active svg:hover,
nav ul li .active:hover svg,
nav ul li .active svg:hover {
stroke-width: var(--stroke-width-default);
}
/* social icons */
.at svg { stroke: var(--brand-hey) !important; }
.brand-github svg { stroke: var(--brand-github) !important; }
.brand-npm svg { stroke: var(--brand-npm) !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; }
.coffee 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: var(--sizing-3xl);
}
.main__wrapper {
min-height: 100vh;
display: flex;
flex-direction: column;
}
main {
flex: 1 1 0%;
width: 80%;
margin-left: auto;
margin-right: auto;
}
/* now */
.now__topper,
article {
border-bottom: 1px solid var(--gray-light);
margin-bottom: var(--sizing-base);
}
.now__topper p:first-child {
margin-top: 0;
}
footer nav:first-child {
gap: var(--sizing-sm);
margin-top: var(--sizing-3xl);
padding: var(--sizing-3xl) 0 var(--sizing-lg);
width: 100%;
}
footer nav:first-child svg {
margin-top: 0;
}
footer nav:first-child a {
width: var(--sizing-xl);
height: var(--sizing-xl);
}
footer nav:last-child {
font-size: var(--font-size-sm);
line-height: var(--line-height-sm);
padding-bottom: var(--sizing-3xl);
}
footer nav:last-child span:not(.active) {
margin-left: var(--sizing-xs);
margin-right: var(--sizing-xs);
}
:is(.main__title, footer nav:last-child) a {
color: var(--text-color);
}
.highlight-text {
color: var(--color-lightest);
background-color: var(--accent-color);
padding: var(--sizing-xs);
}
code {
padding: var(--sizing-xs);
color: var(--text-color-inverted);
background-color: var(--background-color-inverted);
}
/* articles */
article h2 {
color: var(--text-color);
line-height: var(--line-height-2xl);
margin: 0 0 var(--sizing-lg);
transition-property: color;
}
article a h2:hover,
article a h2:focus,
article a h2:active {
color: var(--accent-color-hover);
transition-timing-function: var(--transition-ease-in-out);
transition-duration: var(--transition-duration-default);
}
article [rel="author"],
article time {
color: var(--gray-dark);
font-size: var(--font-size-sm);
line-height: var(--line-height-sm);
margin-right: var(--sizing-xs);
}
article [rel="author"] {
margin-bottom: var(--sizing-xs);
}
article p:first-of-type {
margin-top: var(--sizing-sm);
}
.tag {
margin-bottom: var(--sizing-lg);
display: inline-block;
}
.tag:not(:last-child) {
margin-right: var(--sizing-lg);
}
/* buttons */
button {
appearance: none;
border: none;
}
/* icons */
svg {
stroke-width: var(--stroke-width-default);
}
.icon--small > svg {
width: var(--sizing-lg);
height: var(--sizing-lg);
}
.icon--center__vertical > svg {
display: inline;
vertical-align: middle;
}
/* lists */
ul, ol {
list-style-position: inside;
margin: var(--sizing-base) 0;
padding-left: var(--sizing-base);
}
li {
margin-top: var(--sizing-lg);
margin-bottom: var(--sizing-lg);
}
.link__list li {
margin-top: var(--sizing-sm);
margin-bottom: var(--sizing-sm);
}
.link__list,
.link__list li:last-child {
margin-bottom: 0;
}
/* images */
.image__banner {
border: 1px solid var(--accent-color);
border-radius: var(--rounded-lg);
height: auto;
}
.image__banner,
.image__banner > * {
display: block;
width: 100%;
}
.image__banner > * {
height: auto;
}
/* pages */
.page__header {
font-size: var(--font-size-2xl);
line-height: var(--line-height-2xl);
margin-top: 0;
}
/* selects */
select {
appearance: none;
background-color: transparent;
margin: 0;
width: 100%;
z-index: 1;
outline: none;
appearance: none;
border: none;
color: var(--color-lightest);
cursor: pointer;
font-size: var(--font-size-base);
font-weight: var(--font-weight-bold);
line-height: var(--line-height-base);
}
.select,
select-pagination {
border-radius: var(--rounded-full);
background-color: var(--accent-color);
padding: 0 var(--sizing-lg);
display: grid;
align-items: center;
position: relative;
text-align: center;
text-align-last: center;
-moz-text-align-last: center;
}
.select,
.select select,
select-pagination,
select-pagination select {
min-height: calc(var(--sizing-3xl) * 1.25);
min-width: calc(var(--sizing-3xl) * 4);;
}
.select select,
.select::after,
select-pagination select,
select-pagination::after {
grid-area: select;
}
.select::after,
select-pagination::after {
content: '';
width: var(--sizing-md);
height: var(--sizing-sm);
display: inline-block;
background-color: var(--color-lightest);
clip-path: polygon(100% 0%, 0 0%, 50% 100%);
justify-self: end;
}
/* utilities */
.hidden {
display: none !important;
}
.text--centered {
text-align: center !important;
}
.text--small {
font-size: var(--font-size-sm) !important;
line-height: var(--line-height-sm) !important;
}
.flex--centered {
display: flex;
flex-direction: row;
align-items: center;
}
.justify--centered {
justify-content: center;
}
.flex--wrap {
flex-wrap: wrap
}
/* screens: md */
@media screen and (min-width: 768px) {
.main__title {
flex-direction: row;
align-items: center;
justify-content: space-between;
}
.main__title h1 {
padding-bottom: 0;
}
main {
max-width: 768px;
}
.main__title h1,
.page__header {
font-size: var(--font-size-3xl);
line-height: var(--line-height-3xl);
}
article h2 {
margin: 0 0 var(--sizing-xs);
}
article p:first-of-type {
margin-top: var(--sizing-md);
}
.tag {
margin-bottom: var(--sizing-sm);
}
.tag:not(:last-child) {
margin-right: var(--sizing-sm);
}
footer nav:first-child {
gap: var(--sizing-md);
}
}