grill-blog/public/static/common.css

46 lines
482 B
CSS
Raw Normal View History

2024-05-14 00:28:09 +01:00
2024-05-15 01:51:37 +01:00
2024-05-14 00:28:09 +01:00
* {
box-sizing: border-box;
}
:root {
color-scheme: dark;
}
body {
margin: 0;
height: 100vh;
text-align: center;
}
header {
border-bottom: 2px solid;
margin-left: 16px;
margin-right: 16px;
margin-bottom: 16px;
padding: 16px;
}
2024-05-15 01:51:37 +01:00
header a {
color: unset;
text-decoration: none;
}
2024-05-14 00:28:09 +01:00
header h1 {
margin: 0;
}
footer {
padding: 32px;
}
p {
line-height: 1.6em;
}
main {
padding-left: 16px;
padding-right: 16px;
}