34 lines
383 B
CSS
34 lines
383 B
CSS
|
body {
|
||
|
background-color: #141414;
|
||
|
margin: auto;
|
||
|
margin-top: 75px;
|
||
|
width: 60%;
|
||
|
|
||
|
color: white;
|
||
|
font-family: 'Open Sans', sans-serif;
|
||
|
}
|
||
|
|
||
|
body > img {
|
||
|
max-width: 125%;
|
||
|
}
|
||
|
|
||
|
.header {
|
||
|
font-size: 1.5em;
|
||
|
}
|
||
|
|
||
|
a {
|
||
|
color: #b2a74c;
|
||
|
}
|
||
|
|
||
|
a:hover {
|
||
|
color: #e8d326;
|
||
|
}
|
||
|
|
||
|
.code {
|
||
|
background-color: black;
|
||
|
font-family: Courier New;
|
||
|
margin: 0;
|
||
|
padding: 15px;
|
||
|
font-size: 1em;
|
||
|
}
|