mirror of
https://github.com/nasa/openmct.git
synced 2024-12-21 14:07:50 +00:00
08ecf00916
open #199 IN-PROGRESS Testing with Time Controller visible;
162 lines
3.4 KiB
SCSS
162 lines
3.4 KiB
SCSS
/*****************************************************************************
|
|
* Open MCT Web, Copyright (c) 2014-2015, United States Government
|
|
* as represented by the Administrator of the National Aeronautics and Space
|
|
* Administration. All rights reserved.
|
|
*
|
|
* Open MCT Web is licensed under the Apache License, Version 2.0 (the
|
|
* "License"); you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
* http://www.apache.org/licenses/LICENSE-2.0.
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
* License for the specific language governing permissions and limitations
|
|
* under the License.
|
|
*
|
|
* Open MCT Web includes source code licensed under additional open source
|
|
* licenses. See the Open Source Licenses file (LICENSES.md) included with
|
|
* this source code distribution or the Licensing information page available
|
|
* at runtime from the About dialog for additional information.
|
|
*****************************************************************************/
|
|
/************************** FONTS */
|
|
@font-face {
|
|
/*
|
|
* Use https://icomoon.io/app with /platform/commonUI/general/res/fonts/symbols/icomoon.io-WTD-symbols-project.json
|
|
*/
|
|
font-family: 'symbolsfont';
|
|
src: url($dirCommonRes + 'fonts/symbols/wtdsymbols.eot');
|
|
src: url($dirCommonRes + 'fonts/symbols/wtdsymbols.eot?#iefix') format('embedded-opentype'),
|
|
url($dirCommonRes + 'fonts/symbols/wtdsymbols.woff') format('woff'),
|
|
url($dirCommonRes + 'fonts/symbols/wtdsymbols.ttf') format('truetype'),
|
|
url($dirCommonRes + 'fonts/symbols/wtdsymbols.svg#armataregular') format('svg');
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}
|
|
|
|
/************************** HTML ENTITIES */
|
|
a {
|
|
color: $colorA;
|
|
cursor: pointer;
|
|
text-decoration: none;
|
|
&:hover {
|
|
color: $colorAHov;
|
|
}
|
|
}
|
|
|
|
body, html {
|
|
-webkit-font-smoothing: subpixel-antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
background-color: $colorBodyBg;
|
|
color: $colorBodyFg;
|
|
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
font-size: 100%;
|
|
font-weight: 200;
|
|
height: 100%;
|
|
width: 100%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
em {
|
|
font-style: normal;
|
|
}
|
|
|
|
input, textarea {
|
|
font-family: Helvetica, Arial, sans-serif;
|
|
}
|
|
|
|
input[type="text"] {
|
|
vertical-align: baseline;
|
|
padding: 3px 5px !important;
|
|
}
|
|
|
|
h1, h2, h3 {
|
|
margin: 0;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 1.7em;
|
|
font-weight: normal !important;
|
|
line-height: 120%;
|
|
margin-bottom: 20px;
|
|
margin-top: 0;
|
|
}
|
|
|
|
p {
|
|
margin-bottom: $interiorMarginLg;
|
|
}
|
|
|
|
mct-container {
|
|
display: block;
|
|
}
|
|
|
|
.abs {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
height: auto;
|
|
width: auto;
|
|
}
|
|
|
|
.code {
|
|
font-family: "Lucida Console", monospace;
|
|
font-size: 0.7em;
|
|
line-height: 150%;
|
|
white-space: pre;
|
|
}
|
|
|
|
.codehilite {
|
|
@extend .code;
|
|
background-color: rgba($colorBodyFg, 0.1);
|
|
padding: 1em;
|
|
}
|
|
|
|
.align-right {
|
|
text-align: right;
|
|
}
|
|
|
|
.centered {
|
|
text-align: center;
|
|
}
|
|
|
|
.ellipsis {
|
|
@include ellipsize();
|
|
}
|
|
|
|
.scrolling,
|
|
.scroll {
|
|
overflow: auto;
|
|
}
|
|
|
|
.vscroll {
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.no-margin {
|
|
margin: 0;
|
|
}
|
|
|
|
.ds {
|
|
@include box-shadow(rgba(#000, 0.7) 0 4px 10px 2px);
|
|
}
|
|
|
|
.hide,
|
|
.hidden {
|
|
display: none !important;
|
|
}
|
|
|
|
.off {
|
|
visibility: hidden;
|
|
opacity: 0;
|
|
height: 0;
|
|
margin: 0;
|
|
padding: 0;
|
|
border: 0;
|
|
margin: 0 !important;
|
|
}
|
|
|
|
.sep {
|
|
color: rgba(#fff, 0.2);
|
|
} |