134 lines
2.2 KiB
CSS
Executable File
134 lines
2.2 KiB
CSS
Executable File
:root {
|
|
--large-width: 1080px;
|
|
--small-width: 600px;
|
|
}
|
|
|
|
body {
|
|
font-family: sans-serif;
|
|
font-size: 14px;
|
|
max-width: var(--large-width);
|
|
margin: 0 auto;
|
|
padding: 2em;
|
|
display: grid;
|
|
box-sizing: border-box;
|
|
justify-content: center;
|
|
line-height: 1.54;
|
|
min-height: 100vh;
|
|
background: #dce0df;
|
|
grid-template: "a m e" 1fr
|
|
". f f" / 180px 1fr 180px;
|
|
gap: 2em;
|
|
}
|
|
|
|
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}
|
|
|
|
a {
|
|
color: inherit;
|
|
/* font-weight: 400; */
|
|
/* text-decoration-line: overline; */
|
|
text-decoration-thickness: 1px;
|
|
text-decoration-color: rgba(0, 0, 0, 0.4);
|
|
transition: .5s text-decoration-color;
|
|
}
|
|
|
|
a:hover {
|
|
text-decoration-color: rgba(0, 0, 0, 0.8);
|
|
}
|
|
|
|
ul {
|
|
padding-left: 1em;
|
|
}
|
|
|
|
main *+h2 {margin-top: 2rem}
|
|
main {margin-bottom: 2rem;}
|
|
main h2:first-child { margin-top: 0 }
|
|
|
|
/* aside info */
|
|
#contact + table {font-family: monospace}
|
|
#contact + table td:first-child {
|
|
padding-right: 1em;
|
|
text-transform: uppercase;
|
|
font-weight: 500;
|
|
}
|
|
|
|
/* pubs list */
|
|
.pubs ul {
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0 0 0 2em;
|
|
position: relative;
|
|
}
|
|
.pubs ul::before {
|
|
content: attr(data-year);
|
|
position: absolute;
|
|
font-family: monospace;
|
|
writing-mode: vertical-rl;
|
|
text-orientation: upright;
|
|
left: 0;
|
|
top: .35em;
|
|
line-height: .8em;
|
|
opacity: .5;
|
|
}
|
|
.pubs p { margin: 0; }
|
|
.pubs li+li {margin: 1em 0 0}
|
|
.pubs .title a {
|
|
text-decoration: none;
|
|
color: #000;
|
|
font-style: italic;
|
|
font-weight: 500;
|
|
}
|
|
.pubs .buttons {
|
|
margin-top: .5em;
|
|
}
|
|
.pubs .buttons a {
|
|
display: inline-block;
|
|
text-decoration: none;
|
|
border: 1px solid #777;
|
|
font-size: .8em;
|
|
padding: 0 .5em;
|
|
border-radius: 4px;
|
|
transition: .5s border-color;
|
|
}
|
|
.pubs .buttons a:hover {
|
|
border-color: #555;
|
|
}
|
|
.pubs .buttons a+a {
|
|
margin: 0 0 0 .5em;
|
|
}
|
|
|
|
footer {grid-area: f}
|