nixwebr.ing/site/index.css
jacekpoz 222f4df82f
All checks were successful
Deploy website / deploy (push) Successful in 10s
add display: block; for <a>
2024-09-13 22:47:02 +02:00

58 lines
799 B
CSS

@font-face {
font-family: "JetBrains Mono";
src: url(/JetBrainsMono-Regular.ttf) format("truetype");
}
* {
margin: 0;
padding: 0;
}
body {
background-color: #111111;
color: #DDDDDD;
font-family: "JetBrains Mono";
font-size: 1.15rem;
display: flex;
flex-direction: column;
height: 100%;
max-width: 80ch;
padding-bottom: 2em;
margin: 1em auto 1em;
}
a {
display: block;
}
a:link {
color: #7EB6E1;
}
a:visited {
color: #5075BF;
}
code {
background-color: #333333;
padding: 1px;
border-radius: 3px;
}
pre:has(code) code {
display: block;
}
ul {
list-style-position: inside;
}
li {
margin-left: 2em;
}
#logo-and-name-and-shit {
display: flex;
flex-direction: column;
align-items: center;
}