mirror of
https://github.com/nasa/openmct.git
synced 2024-12-23 06:52:24 +00:00
31a983966b
open #164 CSS, markup;
27 lines
619 B
SCSS
27 lines
619 B
SCSS
@import "compass";
|
|
@import "compass/css3";
|
|
@import "constants";
|
|
$dirImgs: '../../../general/res/images/';
|
|
@import "logo-and-bg";
|
|
|
|
body {
|
|
background: black;
|
|
}
|
|
|
|
.s-logo-holder {
|
|
@include transition-property(opacity);
|
|
@include transition-duration(500ms);
|
|
@include transition-timing-function(ease-in-out);
|
|
background-image: url($dirImgs + "bg-about-openmctweb.jpg") no-repeat center; // For OpenMCT Web.
|
|
z-index: 1000;
|
|
opacity: 1;
|
|
&.fadeout {
|
|
opacity: 0;
|
|
pointer-events: none;
|
|
}
|
|
}
|
|
|
|
.s-logo-openmctweb {
|
|
background-image: url($dirImgs + 'logo-openmctweb-shdw.svg');
|
|
}
|