mirror of
https://github.com/EDCD/coriolis.git
synced 2025-12-08 22:33:24 +00:00
80 lines
1001 B
Plaintext
80 lines
1001 B
Plaintext
|
|
#outfit {
|
|
//width: 62em;
|
|
//margin: 0 auto;
|
|
}
|
|
|
|
#overview {
|
|
h1 {
|
|
font-family: @fTitle;
|
|
margin: 0.2em 0;
|
|
color: @primary;
|
|
float: left;
|
|
}
|
|
}
|
|
|
|
#build {
|
|
float: right;
|
|
line-height: 2em;
|
|
|
|
input {
|
|
background: @primary-bg;
|
|
color: @secondary;
|
|
outline: none;
|
|
border: none;
|
|
font-size: 0.8em;
|
|
line-height: 2em;
|
|
text-align: right;
|
|
&:hover, &:focus {
|
|
background-color: @secondary-bg;
|
|
}
|
|
}
|
|
}
|
|
|
|
#hardpoints {
|
|
.slot:nth-child(2n) {
|
|
clear: left;
|
|
margin-right: 0.5em;
|
|
}
|
|
}
|
|
|
|
#standard {
|
|
.slot {
|
|
clear: left;
|
|
}
|
|
}
|
|
|
|
#internal {
|
|
.slot {
|
|
clear: left;
|
|
}
|
|
}
|
|
|
|
u { // Unit (Mj, Km, etc)
|
|
font-size: 0.8em;
|
|
text-decoration: none;
|
|
}
|
|
|
|
#summary {
|
|
.user-select-none();
|
|
float: right;
|
|
min-width: 40em;
|
|
margin: 0.25em;
|
|
border-top: 2px solid @primary;
|
|
border-bottom: 2px solid @primary;
|
|
background-color: @primary-bg;
|
|
}
|
|
|
|
.toggle {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.expandable {
|
|
display: none;
|
|
|
|
&.expanded {
|
|
display: block;
|
|
}
|
|
}
|
|
|