website/style.css

65 lines
747 B
CSS
Raw Normal View History

2022-05-06 08:00:20 +00:00
body {
font-family: 'Fira Code';
src: url("/woff/FiraCode-Regular.woff") format("woff");
2022-05-06 08:00:20 +00:00
margin:20px auto;
max-width:800px;
line-height:1.5em;
font-size:1.1em;
background-color:#282c34;
color:#bbc2cf;
padding:0 10px;
hyphens:auto;
}
header {
display:flex;
justify-content:space-between;
align-items:center;
white-space:nowrap;
font-variant:small-caps;
}
nav {
display:inline-block;
}
nav li {
display:inline-block no;
margin-right:20px;
}
.navlogo {
width:50px;
height:50px;
}
a {
color:#ff6c6b;
text-decoration:none;
}
a:hover {
color:#ff6c6b;
}
.linkable::before {
content: "# ";
}
.linkable::hover {
color: #da8548;
}
h1,h2,h3 {
line-height:1.2;
color:#51afef;
font-size:1.3em;
}
pre {
tab-size:4;
}