statusPage/static/style.css
2024-10-09 14:26:42 -04:00

42 lines
No EOL
444 B
CSS

* {
box-sizing:border-box;
margin:0px;
padding:0px;
}
html {
min-height:100%;
overflow-x:hidden;
}
body {
display:flex;
flex-flow:column nowrap;
align-items: center;
background-color: #212429;
color:#e4e4e4;
gap:15px;
font-family: "Fira Sans Condensed", sans-serif;
padding:20px;
&>h1 {
}
}
a {
color:inherit;
text-decoration-style: dotted;
&:hover {
text-decoration-style:solid;
}
}
header {
}
main {
}
footer {
}