106 lines
1.4 KiB
CSS
106 lines
1.4 KiB
CSS
/*
|
|
Sophia Darkmode, (Basic As Shit)
|
|
MIT License
|
|
*/
|
|
|
|
body {
|
|
background: #121212;
|
|
}
|
|
|
|
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
|
|
color: #fff;
|
|
text-decoration: none;
|
|
}
|
|
|
|
h1 {
|
|
color: #fff;
|
|
font-size: 2em;
|
|
line-height: 1.5em;
|
|
}
|
|
|
|
h2 {
|
|
color: #fff;
|
|
font-size: 1.5em;
|
|
line-height: 1.5em;
|
|
}
|
|
|
|
h3 {
|
|
color: #fff;
|
|
font-size: 1.25em;
|
|
line-height: 1.5em;
|
|
}
|
|
|
|
h4 {
|
|
color: #fff;
|
|
font-size: 1.1em;
|
|
line-height: 1.5em;
|
|
}
|
|
|
|
h5 {
|
|
color: #fff;
|
|
font-size: 0.9em;
|
|
line-height: 1.5em;
|
|
}
|
|
|
|
h6 {
|
|
color: #fff;
|
|
font-size: 0.7em;
|
|
line-height: 1.5em;
|
|
}
|
|
sub {
|
|
color: #fff;
|
|
font-size: 0.8em;
|
|
position: relative;
|
|
top: 0.5em;
|
|
}
|
|
|
|
sup {
|
|
color: #fff;
|
|
font-size: 0.8em;
|
|
position: relative;
|
|
top: -0.5em;
|
|
}
|
|
|
|
hr {
|
|
border: 0;
|
|
border-bottom: solid 2px #fff;
|
|
margin: 2em 0;
|
|
}
|
|
|
|
hr.major {
|
|
margin: 3em 0;
|
|
}
|
|
|
|
blockquote {
|
|
border-left: solid 6px #121212;
|
|
font-style: italic;
|
|
margin: 0 0 2em 0;
|
|
padding: 0.5em 0 0.5em 1.5em;
|
|
}
|
|
|
|
code {
|
|
background: #fff;
|
|
border-radius: 0.35em;
|
|
border: solid 2px #121212;
|
|
font-family: "Courier New", monospace;
|
|
font-size: 0.9em;
|
|
margin: 0 0.25em;
|
|
padding: 0.25em 0.65em;
|
|
}
|
|
|
|
pre {
|
|
color: #fff;
|
|
-webkit-overflow-scrolling: touch;
|
|
font-family: "Courier New", monospace;
|
|
font-size: 0.9em;
|
|
margin: 0 0 2em 0;
|
|
}
|
|
|
|
pre code {
|
|
color: #fff;
|
|
display: block;
|
|
line-height: 1.75em;
|
|
padding: 1em 1.5em;
|
|
overflow-x: auto;
|
|
}
|