escot/content/assets/theme.css

134 lines
2.2 KiB
CSS
Raw Normal View History

2022-09-25 19:51:43 +00:00
:root {
--large-width: 1080px;
--small-width: 600px;
}
2022-09-22 10:03:58 +00:00
body {
font-family: sans-serif;
2022-09-25 19:51:43 +00:00
font-size: 14px;
max-width: var(--large-width);
2022-09-22 10:03:58 +00:00
margin: 0 auto;
2022-09-25 19:51:43 +00:00
padding: 2em;
2022-09-22 10:03:58 +00:00
display: grid;
box-sizing: border-box;
justify-content: center;
line-height: 1.54;
min-height: 100vh;
background: #dce0df;
2022-09-25 19:51:43 +00:00
grid-template: "a m e" 1fr
". f f" / 180px 1fr 180px;
2022-09-22 10:03:58 +00:00
gap: 2em;
}
2022-09-25 19:51:43 +00:00
h1, h2, h3, nav a {
font-family: monospace;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 0.1rem;
}
nav {
padding: .4em 0 0;
}
nav ul {
top: 2em;
position: sticky;
list-style: none;
margin: 0;
padding: 0
}
@media (max-width: 840px) {
body {
grid-template: "a" "m" 1fr "f";
}
nav {padding: 0}
nav ul { position: static; }
}
nav a {
display: block;
float: right;
clear: right;
text-decoration: none;
opacity: .7;
}
nav a:hover {opacity: 1}
2022-09-22 10:03:58 +00:00
a {
2022-09-25 19:51:43 +00:00
color: inherit;
/* font-weight: 400; */
2022-09-22 10:03:58 +00:00
/* text-decoration-line: overline; */
text-decoration-thickness: 1px;
2022-09-25 19:51:43 +00:00
text-decoration-color: rgba(0, 0, 0, 0.4);
2022-09-22 10:03:58 +00:00
transition: .5s text-decoration-color;
}
a:hover {
2022-09-25 19:51:43 +00:00
text-decoration-color: rgba(0, 0, 0, 0.8);
2022-09-22 10:03:58 +00:00
}
ul {
padding-left: 1em;
}
2022-09-25 19:51:43 +00:00
main *+h2 {margin-top: 2rem}
main {margin-bottom: 2rem;}
main h2:first-child { margin-top: 0 }
2022-09-22 10:03:58 +00:00
/* aside info */
2022-09-25 19:51:43 +00:00
#contact + table {font-family: monospace}
#contact + table td:first-child {
2022-09-22 10:03:58 +00:00
padding-right: 1em;
2022-09-25 19:51:43 +00:00
text-transform: uppercase;
font-weight: 500;
2022-09-22 10:03:58 +00:00
}
/* pubs list */
2022-09-25 19:51:43 +00:00
.pubs ul {
2022-09-22 10:03:58 +00:00
list-style: none;
margin: 0;
padding: 0 0 0 2em;
position: relative;
}
2022-09-25 19:51:43 +00:00
.pubs ul::before {
2022-09-22 10:03:58 +00:00
content: attr(data-year);
position: absolute;
2022-09-25 19:51:43 +00:00
font-family: monospace;
2022-09-22 10:03:58 +00:00
writing-mode: vertical-rl;
text-orientation: upright;
left: 0;
2022-09-25 19:51:43 +00:00
top: .35em;
line-height: .8em;
2022-09-22 10:03:58 +00:00
opacity: .5;
}
2022-09-25 19:51:43 +00:00
.pubs p { margin: 0; }
.pubs li+li {margin: 1em 0 0}
.pubs .title a {
2022-09-22 10:03:58 +00:00
text-decoration: none;
color: #000;
font-style: italic;
font-weight: 500;
}
2022-09-25 19:51:43 +00:00
.pubs .buttons {
margin-top: .5em;
}
.pubs .buttons a {
2022-09-22 10:03:58 +00:00
display: inline-block;
text-decoration: none;
2022-09-25 19:51:43 +00:00
border: 1px solid #777;
2022-09-22 10:03:58 +00:00
font-size: .8em;
padding: 0 .5em;
border-radius: 4px;
2022-09-25 19:51:43 +00:00
transition: .5s border-color;
}
.pubs .buttons a:hover {
border-color: #555;
2022-09-22 10:03:58 +00:00
}
2022-09-25 19:51:43 +00:00
.pubs .buttons a+a {
2022-09-22 10:03:58 +00:00
margin: 0 0 0 .5em;
}
2022-09-25 19:51:43 +00:00
footer {grid-area: f}