site/style.css

47 lines
598 B
CSS

body {
font-family: 'Fira Code', monospace;
}
body {
background: #1d1f21;
color: #b5bd68;
padding: 1%;
}
nav {
display: flex;
justify-content: center;
}
nav a {
margin: 1%;
}
#content {
border-top: #b5bd68 2px solid;
border-bottom: #b5bd68 2px solid;
padding: 2% 5%;
margin: 1%;
}
.center {
text-align: center;
}
img {
display: block;
margin: auto;
}
a {
color: #cc6666;
}
a:hover {
opacity: 0.7;
}
footer {
text-align: center
}
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;700&display=swap');