mirror of
https://github.com/EDCD/coriolis.git
synced 2025-12-08 14:33:22 +00:00
89 lines
1.1 KiB
Plaintext
89 lines
1.1 KiB
Plaintext
@import 'colors';
|
|
@import 'fonts';
|
|
@import 'utilities';
|
|
@import 'icons';
|
|
@import 'background-images';
|
|
@import 'header';
|
|
@import 'shipyard';
|
|
@import 'list';
|
|
@import 'slot';
|
|
@import 'outfit';
|
|
@import 'table';
|
|
@import 'select';
|
|
@import 'modal';
|
|
@import 'charts';
|
|
@import 'error';
|
|
|
|
|
|
html, body {
|
|
min-height: 100%;
|
|
}
|
|
|
|
body {
|
|
color: @fg;
|
|
background-color: #000;
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: @fStandard;
|
|
overflow-x: hidden;
|
|
background-image: none;
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
background-attachment: fixed;
|
|
background-size: cover;
|
|
}
|
|
|
|
#main {
|
|
margin: 0;
|
|
padding: 0.5em 0.25em;
|
|
min-height: 800px;
|
|
clear: both;
|
|
}
|
|
|
|
.l {
|
|
float: left;
|
|
}
|
|
|
|
.r {
|
|
float: right;
|
|
}
|
|
|
|
.cl {
|
|
clear: left;
|
|
}
|
|
|
|
.cr {
|
|
clear: right;
|
|
}
|
|
|
|
.cb {
|
|
clear: both;
|
|
}
|
|
|
|
h1 {
|
|
font-family: @fTitle;
|
|
color: @primary;
|
|
}
|
|
|
|
h2 {
|
|
text-transform: uppercase;
|
|
font-family: @fTitle;
|
|
}
|
|
|
|
|
|
a, a:visited {
|
|
color: @fg;
|
|
}
|
|
|
|
footer {
|
|
clear: both;
|
|
font-size: 0.6em;
|
|
color: #999;
|
|
padding: 1em;
|
|
overflow: hidden;
|
|
|
|
.right {
|
|
float: right;
|
|
text-align: right;
|
|
}
|
|
} |