49 lines
657 B
CSS
49 lines
657 B
CSS
@font-face {
|
|
font-family: "segoeUI";
|
|
src: url("./fonts/segoeui.ttf");
|
|
}
|
|
|
|
body {
|
|
background-color: black;
|
|
color: white;
|
|
font-family: "segoeUI"
|
|
}
|
|
|
|
a {
|
|
color: gray;
|
|
}
|
|
|
|
.italic {
|
|
font-style: italic;
|
|
}
|
|
|
|
.bold {
|
|
font-style: bold;
|
|
}
|
|
|
|
.lightcol {
|
|
color: lightgray;
|
|
}
|
|
|
|
.nospace {
|
|
margin-top: 0;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.notopmargin {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.nobottommargin {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
|
|
.vertcentered {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
-moz-transform: translateX(-50%) translateY(-50%);
|
|
-webkit-transform: translateX(-50%) translateY(-50%);
|
|
transform: translateX(-50%) translateY(-50%);
|
|
}
|