mirror of
https://github.com/EDCD/coriolis.git
synced 2025-12-09 06:43:24 +00:00
UI improvements, save build feature partial implementation
This commit is contained in:
83
app/less/outfit.less
Normal file
83
app/less/outfit.less
Normal file
@@ -0,0 +1,83 @@
|
||||
|
||||
#overview {
|
||||
h1 {
|
||||
font-family: @fTitle;
|
||||
margin: 5px 0;
|
||||
color: @primary;
|
||||
float: left;
|
||||
}
|
||||
}
|
||||
|
||||
#build {
|
||||
float: right;
|
||||
line-height: 2em;
|
||||
|
||||
input {
|
||||
background: @primary-bg;
|
||||
color: @fg;
|
||||
border: none;
|
||||
font-size: 0.8em;
|
||||
line-height: 2em;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
}
|
||||
|
||||
#hardpoints {
|
||||
.slot:nth-child(2n) {
|
||||
clear: left;
|
||||
margin-right: 10px;
|
||||
}
|
||||
}
|
||||
|
||||
#standard {
|
||||
.slot {
|
||||
clear: left;
|
||||
}
|
||||
}
|
||||
|
||||
#internal {
|
||||
.slot {
|
||||
clear: left;
|
||||
}
|
||||
}
|
||||
|
||||
#summary {
|
||||
.user-select-none();
|
||||
float: right;
|
||||
width: 40%;
|
||||
border-top: 2px solid @primary;
|
||||
border-bottom: 2px solid @primary;
|
||||
background-color: @primary-bg;
|
||||
}
|
||||
|
||||
legend {
|
||||
text-transform: uppercase;
|
||||
padding: 0 5px;
|
||||
color: @warning;
|
||||
font-family: @fTitle;
|
||||
}
|
||||
|
||||
fieldset {
|
||||
user-select: none;
|
||||
-moz-user-select: none;
|
||||
-webkit-user-select: none;
|
||||
-ms-user-select: none;
|
||||
cursor: default;
|
||||
border: 2px solid @warning-bg;
|
||||
.border-radius(5px);
|
||||
margin: 5px;
|
||||
padding: 1px 5px 5px;
|
||||
}
|
||||
|
||||
.toggle {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.expandable {
|
||||
display: none;
|
||||
|
||||
&.expanded {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user