nixwebr.ing/site/index.css
jacekpoz f5430ce6cd
All checks were successful
Deploy website / deploy (push) Successful in 10s
steal some more css from me site
2024-09-13 21:56:56 +02:00

38 lines
543 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;
margin: 0;
height: 100%;
}
a:link {
color: #7EB6E1;
}
a:visited {
color: #5075BF;
}
code {
background-color: #333333;
padding: 1px;
border-radius: 3px;
}
pre:has(code) code {
display: block;
}