1
0
Fork 0
alnotz.fr/style.css
2025-02-16 03:02:11 +01:00

36 lines
No EOL
509 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: darkblue;
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;
}
}