41 lines
749 B
CSS
41 lines
749 B
CSS
|
|
body {
|
||
|
|
background-color: #000000;
|
||
|
|
margin-left: 6%;
|
||
|
|
margin-right: 6%;
|
||
|
|
width: 88%;
|
||
|
|
font-family: Calibri, Verdana, Geneva, Arial, sans-serif;
|
||
|
|
font-size: large;
|
||
|
|
color: #DCDCDC;
|
||
|
|
}
|
||
|
|
|
||
|
|
@media only screen and (min-width: 800px) {
|
||
|
|
body{
|
||
|
|
margin-left: 20%;
|
||
|
|
margin-right: 20%;
|
||
|
|
width: 60%;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
h1 {
|
||
|
|
font-size: 150%;
|
||
|
|
font-weight: bold;
|
||
|
|
}
|
||
|
|
|
||
|
|
h2 {
|
||
|
|
font-size: 130%;
|
||
|
|
font-weight: bold;
|
||
|
|
}
|
||
|
|
|
||
|
|
h3 {
|
||
|
|
font-size: 100%;
|
||
|
|
font-weight: bold;
|
||
|
|
}
|
||
|
|
|
||
|
|
a {
|
||
|
|
color: #9696BE;
|
||
|
|
}
|
||
|
|
|
||
|
|
.code {
|
||
|
|
font-family: IBM Plex Mono, Liberation Mono, Courier, monospace;
|
||
|
|
color: #CCCCCC;
|
||
|
|
}
|