You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

82 lines
1011 B
CSS

* {
box-sizing: border-box;
}
html, body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background: #191316;
}
body {
min-height: 100vh;
background: #715a7f;
color: white;
max-width: 600px;
margin: 0 auto;
padding: 16px;
}
nav {
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
nav a {
opacity: .4;
}
nav a:hover {
opacity: .8;
}
nav > a:not(:last-child) {
margin-right: 40px;
}
h1 > aside {
display: inline-block;
font-size: .5em;
font-weight: 100;
font-style: italic;
opacity: .6;
margin-left: 8px;
}
h1 > .subtitle {
display: block;
font-size: 20px;
opacity: .8;
font-weight: normal;
font-style: italic;
}
ul > li:not(:last-child) {
margin-bottom: 8px;
}
ul.posts {
list-style: none;
}
ul.posts li span {
display: inline-block;
min-width: 80px;
opacity: .5;
text-align: right;
margin-right: 10px;
}
a {
color: white;
opacity: .8;
}
a[href^="https:"],
a[href^="http:"],
a[href^="//"] {
color: #fdd7ff;
}