mirror of
https://github.com/CrispyPin/crispypin.cc.git
synced 2024-11-10 04:00:27 +01:00
58 lines
No EOL
796 B
CSS
58 lines
No EOL
796 B
CSS
body {
|
|
font-family: sans-serif;
|
|
background-color: #111;
|
|
color: #fff;
|
|
display: -ms-grid;
|
|
display: grid;
|
|
-ms-grid-rows: 50px 1fr auto;
|
|
grid-template-rows: 50px 1fr auto;
|
|
margin: 0;
|
|
-webkit-box-pack: center;
|
|
-ms-flex-pack: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
main {
|
|
padding: 0 32px 64px;
|
|
width: 800px;
|
|
background-color: #222;
|
|
}
|
|
|
|
a:link {
|
|
color: #8bf;
|
|
}
|
|
|
|
a:visited {
|
|
color: #b8f;
|
|
}
|
|
|
|
.title-link a {
|
|
text-decoration: none;
|
|
color: #fff;
|
|
}
|
|
|
|
.title-link a:visited {
|
|
color: #fff;
|
|
}
|
|
|
|
header {
|
|
grid-column: 1 / -1;
|
|
background-color: #111;
|
|
padding: 0;
|
|
}
|
|
|
|
footer {
|
|
grid-column: 1 / -1;
|
|
margin-top: 5px;
|
|
margin-bottom: 10px;
|
|
text-align: center;
|
|
}
|
|
|
|
footer p {
|
|
margin: 5px;
|
|
}
|
|
|
|
img {
|
|
max-width: 800px;
|
|
}
|
|
/*# sourceMappingURL=style.css.map */ |