hugo-theme-more-contentful/assets/scss/base.scss

248 lines
3.5 KiB
SCSS
Raw Normal View History

*, *::before, *::after { box-sizing: border-box; }
*:target {
animation: target-fade 3s 1;
}
@keyframes target-fade {
2022-05-01 12:38:07 +00:00
0% { background: var(--accent-color); }
100% { background: unset; }
}
::selection {
2022-05-01 12:38:07 +00:00
background: var(--foreground);
color: var(--background);
}
body {
margin: 0 auto;
max-width: var(--content-width);
padding: 1rem;
}
nav {
margin: 1rem auto;
}
h1 { margin: 1rem auto; }
article {
h1 { margin: 1rem auto; }
h2 { margin-top: 3rem; }
h3 { margin-top: 2rem; }
h1, h2, h3 {
margin-bottom: 1rem;
}
}
/* Text formatting */
h1, h2, h3,
h4, h5, h6 {
font-family: var(--header-family);
line-height: 1.25;
}
a {
2022-05-01 12:38:07 +00:00
color: var(--accent-color);
text-decoration: none;
&:hover {
2020-11-06 10:20:16 +00:00
color: var(--base0B);
text-decoration: underline;
}
&::selection {
text-decoration: underline;
}
}
dd, li, p, td {
2020-11-05 05:54:38 +00:00
line-height: 1.45;
}
p {
margin-top: 1rem;
margin-bottom: 1rem;
}
dd {
margin-top: 0.5rem;
margin-bottom: 1.5rem;
}
kbd {
border: var(--border-style);
font-size: 0.8em;
font-weight: bold;
padding: 0 0.25em;
}
code, pre {
font-family: var(--mono-family);
}
code {
2022-04-30 07:47:35 +00:00
background: var(--base01);
font-family: var(--mono-family);
font-size: 0.9em;
}
pre {
background: var(--base01);
color: var(--base05);
border: var(--border-style);
font-family: var(--mono-family);
font-size: 1rem;
line-height: 1.5;
margin-top: 1rem;
margin-bottom: 1rem;
max-height: var(--code-block-size);
padding: 0.5rem;
overflow: auto;
}
code[class*=language-]::selection,
code[class*=language-] ::selection,
pre[class*=language-]::selection,
pre[class*=language-] ::selection {
2022-04-30 07:47:35 +00:00
background: var(--base02);
font-size: var(--mono-font-size);
2022-04-30 07:47:35 +00:00
color: unset;
}
mark {
2022-05-01 12:38:07 +00:00
background: var(--foreground);
color: var(--background);
&::selection {
color: var(--base05);
}
}
hr {
2022-05-01 12:38:07 +00:00
border-color: var(--accent-color);
2022-04-30 07:47:35 +00:00
margin: 1em 0;
}
/* Multimedia blocks */
img, video, audio, iframe {
display: block;
height: auto;
max-width: 100%;
margin: auto;
}
table {
border-collapse: collapse;
2022-06-13 12:33:16 +00:00
border-spacing: 0.5em;
margin: auto;
2022-06-13 12:33:16 +00:00
overflow: auto;
width: 100%;
caption {
margin: 1em;
}
}
2022-06-13 12:33:16 +00:00
@mixin table-item-align {
text-align: left;
}
thead {
2022-06-13 12:33:16 +00:00
font-weight: bold;
& tr th {
@include table-item-align;
}
}
2022-06-13 12:33:16 +00:00
tbody {
& tr td {
@include table-item-align;
}
}
ol, ul {
line-height: 1.5;
}
figure {
margin: 2rem auto;
& > * {
margin: 1rem auto;
}
}
figcaption {
text-align: center;
font-size: 1rem;
}
blockquote {
margin: 2rem 1rem;
}
blockquote footer {
display: block;
width: 100%;
}
/* Form controls */
button {
background: unset;
border: var(--base05) solid 1px;
color: var(--base05);
cursor: pointer;
font-size: 1rem;
padding: 0.5rem;
}
/* Semantic blocks */
aside {
--vertical-rhythm-reduction: 0.2;
color: var(--base03);
border: 1px solid var(--base03);
border-left: 3px solid var(--base03);
font-size: calc(1rem * (1 - var(--vertical-rhythm-reduction)));
font-family: var(--header-family);
line-height: calc(1rem * (1 + var(--vertical-rhythm-reduction)));
margin: 1rem 0;
padding: 0.5rem;
width: 100%;
}
footer {
align-items: center;
display: flex;
flex-flow: column wrap;
justify-content: space-evenly;
text-align: center;
}
/* Mobile styles */
@media all and (max-width: $tablet-breakpoint) {
html:root {
--font-size: 17px;
}
}
@media print {
html {
overflow: auto;
}
p {
orphans: 3;
}
pre {
max-height: unset;
}
}
2021-01-27 16:21:42 +00:00