based.cooking/src/style.css

36 lines
377 B
CSS
Raw Normal View History

2021-03-10 17:02:35 +00:00
body {
max-width: 800px ;
margin: auto ;
margin-bottom: 500px ;
}
h1 {
text-align: center ;
}
footer {
text-align: center ;
}
img {
max-width: 600px ;
margin: auto ;
display: block ;
}
@media (prefers-color-scheme: dark) {
body {
background: #151515 ;
color: white ;
}
a {
color: lightblue ;
}
a:visited {
color: gray ;
}
h2 {
color: tomato ;
}
}