25 lines
436 B
CSS
25 lines
436 B
CSS
/* helpers */
|
|
.float-left {
|
|
float: left;
|
|
}
|
|
.float-right {
|
|
float: right;
|
|
}
|
|
.clear-both {
|
|
clear: both;
|
|
}
|
|
|
|
body {
|
|
background: black;
|
|
color: #DDDDDD;
|
|
font-family: medium-content-sans-serif-font, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif !important;
|
|
text-align: center;
|
|
}
|
|
|
|
em {
|
|
font-weight: bold;
|
|
}
|
|
|
|
#body-wrapper {
|
|
display: inline-block;
|
|
}
|