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

237 lines
3.3 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; }
}
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);
2023-10-28 08:51:51 +00:00
text-decoration-thickness: .1rem;
&:hover {
color: var(--base0C);
}
}
dd, li, p, td {
2020-11-05 05:54:38 +00:00
line-height: 1.45;
}
p {
margin-top: 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 {
2023-02-27 05:04:25 +00:00
background: var(--base01);
font-size: 0.9em;
}
pre {
color: var(--base05);
border: var(--border-style);
font-size: 1rem;
line-height: 1.5;
margin-top: 1rem;
margin-bottom: 1rem;
max-height: var(--code-block-size);
padding: 0.5rem;
overflow: auto;
direction: ltr;
2023-02-27 05:04:25 +00:00
code { background: unset; }
}
mark {
2022-05-01 12:38:07 +00:00
background: var(--foreground);
color: var(--background);
}
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%;
2023-02-27 05:04:07 +00:00
border: var(--border-style);
margin: var(--vertical-rhythm) auto;
caption { margin: unset; }
2022-06-13 12:33:16 +00:00
2023-02-27 05:04:07 +00:00
thead tr {
background: var(--base05);
color: var(--base00);
2022-06-13 12:33:16 +00:00
}
2023-02-27 05:04:07 +00:00
tbody {
tr + tr, tr:first-child { border-top: var(--border-style); }
tr:hover { background: var(--selection-color); }
2023-02-27 05:04:07 +00:00
}
th, td { padding: 0.5em; }
tr td > p {
margin: 0;
}
}
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%;
}
2022-10-24 05:32:06 +00:00
header, footer {
a[href]::after {
content: unset;
}
}
footer {
align-items: center;
display: flex;
flex-flow: column wrap;
justify-content: space-evenly;
text-align: center;
}
@media print {
html {
overflow: auto;
}
p {
orphans: 3;
}
pre {
max-height: unset;
}
}
2021-01-27 16:21:42 +00:00