93 lines
1.3 KiB
CSS
93 lines
1.3 KiB
CSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
}
|
|
|
|
::selection {
|
|
background-color: #000000;
|
|
color: #ffffff;
|
|
}
|
|
|
|
html, body {
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
background-color: #ffffff;
|
|
border-top: solid 5px #000000;
|
|
padding: 45px;
|
|
}
|
|
|
|
a {
|
|
font-family: monospace;
|
|
color: #000000;
|
|
}
|
|
|
|
header {
|
|
height: 65px;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
header img {
|
|
height: 100%;
|
|
}
|
|
|
|
header #modern {
|
|
line-height: 65px;
|
|
text-align: center;
|
|
vertical-align: top;
|
|
margin-left: 30px;
|
|
font-size: 18px;
|
|
color: #000000;
|
|
font-family: monospace;
|
|
}
|
|
header #modern:hover
|
|
{
|
|
text-decoration: none;
|
|
}
|
|
|
|
main {
|
|
max-width: 800px;
|
|
}
|
|
|
|
main>* {
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
main img {
|
|
max-width: 100%;
|
|
}
|
|
|
|
main>ul {
|
|
padding-left: 30px;
|
|
}
|
|
|
|
main p, main blockquote, main li {
|
|
font-size: 20px;
|
|
line-height: 30px;
|
|
}
|
|
|
|
main a:hover {
|
|
text-decoration: none;
|
|
}
|
|
|
|
main blockquote {
|
|
margin-left: 20px;
|
|
padding-left: 10px;
|
|
border-left: #000000 solid 5px;
|
|
}
|
|
|
|
main>#header {
|
|
font-size: 45px;
|
|
}
|
|
|
|
@media (max-width: 800px) {
|
|
body {
|
|
padding: 30px;
|
|
}
|
|
header #modern {
|
|
margin-left: 25px;
|
|
}
|
|
} |