ESPTerm - ESP8266 terminal emulator. Branches: [master] patches, [work] next release
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
@import "normalize";
|
|
|
|
@import "lib/bourbon/bourbon";
|
|
|
|
|
|
|
|
@import "grid-settings";
|
|
|
|
@import "lib/neat/neat";
|
|
|
|
|
|
|
|
@import "utils";
|
|
|
|
|
|
|
|
$form-label-w: 130px;
|
|
|
|
$form-label-gap: 8px;
|
|
|
|
$form-field-w: 250px;
|
|
|
|
|
|
|
|
$c-form-label-fg: white;
|
|
|
|
$c-form-field-bg: #303030;
|
|
|
|
$c-form-field-fg: white;
|
|
|
|
$c-form-highlight: #214e7a;
|
|
|
|
$c-form-highlight-a: #2972ba;
|
|
|
|
|
|
|
|
@function dist($x) {
|
|
|
|
@return modular-scale($x, 1rem, $golden);
|
|
|
|
}
|
|
|
|
|
|
|
|
@function fsize($x) {
|
|
|
|
@return modular-scale($x, 1em, $major-second);
|
|
|
|
}
|
|
|
|
|
|
|
|
.hidden {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
[onclick] {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
@import "modal";
|
|
|
|
@import "layout";
|
|
|
|
@import "form/index";
|
|
|
|
|
|
|
|
// import all our pages
|
|
|
|
@import "pages/wifi";
|
|
|
|
@import "pages/term";
|
|
|
|
@import "pages/about";
|
|
|
|
@import "term-colors";
|
|
|
|
|
|
|
|
// media queries
|
|
|
|
|
|
|
|
@include media($tablet-min) {
|
|
|
|
.mq-phone { display: none; }
|
|
|
|
}
|
|
|
|
|
|
|
|
@include media($phone) {
|
|
|
|
.mq-tablet-min { display: none; }
|
|
|
|
}
|
|
|
|
|
|
|
|
@include media($normal-min) {
|
|
|
|
.mq-tablet-max { display: none; }
|
|
|
|
}
|
|
|
|
|
|
|
|
@include media($tablet-max) {
|
|
|
|
.mq-normal-min { display: none; }
|
|
|
|
}
|