Files
enstrayedapi/website/static/newposts.css
Enstrayed 1cab7e9869 bruh
2025-07-16 16:20:35 -07:00

62 lines
903 B
CSS

html {
display: grid;
place-items: center;
background-color: #282828;
}
body {
margin: 2em 0 0 0;
font-family: 'Segoe UI Variable Text', sans-serif;
background-color: #202020;
color: #F1F1F1;
max-width: 80ch;
padding: 2em;
box-shadow: 0 0 1em 0 #202020;
}
a, a:link {
color: #FF5A36;
}
a:hover {
color: #ff8266;
}
.inlineheader {
display: flex;
align-items: center;
margin-top: 2rem;
gap: 1em;
flex-wrap: wrap;
}
.inlineheader h2 {
margin: 0;
}
.inlineheader > div > span {
padding: 0.2rem;
color: white;
background-color: #f06445;
}
p {
line-height: 120%;
}
code {
background: #181818;
line-height: 130%;
padding: 0 0.1rem 0;
font-family: Consolas, monospace;
}
pre code {
display: block;
overflow-x: auto;
white-space: pre-wrap;
background: #181818;
padding: 1rem;
}