45 lines
410 B
CSS
45 lines
410 B
CSS
|
* {
|
||
|
font-family: Helvetica;
|
||
|
}
|
||
|
|
||
|
.top_bar {
|
||
|
background-color: #16161d;
|
||
|
padding: 1px;
|
||
|
}
|
||
|
|
||
|
.column {
|
||
|
float: left;
|
||
|
width: 90%;
|
||
|
margin-left: 5%;
|
||
|
margin-right: 5%;
|
||
|
}
|
||
|
|
||
|
h1 {
|
||
|
color: #7e9cd8;
|
||
|
margin-left: 5%;
|
||
|
margin-right: 5%;
|
||
|
padding: 10px 0px;
|
||
|
}
|
||
|
|
||
|
h2 {
|
||
|
color: #ff5d62;
|
||
|
}
|
||
|
|
||
|
p {
|
||
|
color: #dcd7ba;
|
||
|
}
|
||
|
|
||
|
|
||
|
body {
|
||
|
background-color: #252535;
|
||
|
margin: 0px;
|
||
|
}
|
||
|
|
||
|
a:link {
|
||
|
color: #dcd7ba;
|
||
|
}
|
||
|
|
||
|
a:visited {
|
||
|
color: #957fb8;
|
||
|
}
|