84 lines
1.2 KiB
SCSS
84 lines
1.2 KiB
SCSS
$fg-column: 70px;
|
|
$fg-gutter: 26px;
|
|
$fg-max-columns: 12;
|
|
$body-font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Verdana, sans-serif;
|
|
$body-font-size: 14px;
|
|
$body-line-height: 20px;
|
|
|
|
// Base html styles
|
|
html {
|
|
height: 100%;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
color: #888;
|
|
}
|
|
|
|
input {
|
|
font-family: $body-font-family;
|
|
}
|
|
|
|
input[type="submit"], .button {
|
|
border: 1px solid #ccc;
|
|
background: #efefef;
|
|
@include border-radius(3px);
|
|
padding: 6px;
|
|
}
|
|
|
|
textarea {
|
|
@include box-sizing(border-box);
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
|
|
// Extends
|
|
.new-module {
|
|
position: relative;
|
|
|
|
a {
|
|
padding: 6px;
|
|
display: block;
|
|
}
|
|
|
|
ul.new-dropdown {
|
|
list-style: none;
|
|
position: absolute;
|
|
|
|
li {
|
|
display: none;
|
|
padding: 6px;
|
|
}
|
|
|
|
}
|
|
|
|
&:hover {
|
|
ul.new-dropdown {
|
|
display: block;
|
|
}
|
|
}
|
|
}
|
|
|
|
.draggable {
|
|
width: 7px;
|
|
min-height: 14px;
|
|
background: url('../img/drag-handle.png') no-repeat center;
|
|
text-indent: -9999px;
|
|
display: block;
|
|
float: right;
|
|
}
|
|
|
|
.wip {
|
|
outline: 1px solid #f00 !important;
|
|
position: relative;
|
|
|
|
&:after {
|
|
content: "WIP";
|
|
font-size: 8px;
|
|
padding: 2px;
|
|
background: #f00;
|
|
color: #fff;
|
|
@include position(absolute, 0px 0px 0 0);
|
|
}
|
|
}
|