1
0
Fork 0
alnotz.fr/web/style.css
2025-02-21 02:29:17 +01:00

36 lines
No EOL
515 B
CSS

@charset "utf-8";
:root {
color: lightskyblue;
background-color: black;
}
footer, h1 {
text-align: center;
}
footer {
position: absolute;
bottom: 0%;
left: 0%;
color: aliceblue;
background-color: rgb(29, 5, 73);
width: 100%;
}
main {
width: 60%;
padding: 0 20% 0 20%;
}
@media (prefers-color-scheme: light) {
:root {
color: black;
background-color: lightgray;
}
footer {
background-color: lightblue;
color: black;
}
}