mirror of
https://github.com/nasa/openmct.git
synced 2025-01-10 23:12:57 +00:00
30 lines
832 B
SCSS
30 lines
832 B
SCSS
|
.l-logo-holder {
|
||
|
position: absolute;
|
||
|
top: 0; right: 0; bottom: 0; left: 0;
|
||
|
.l-logo {
|
||
|
$w: 5%;
|
||
|
position: absolute;
|
||
|
&.l-logo-app {
|
||
|
top: 0; right: 15%; bottom: 0; left: 15%;
|
||
|
}
|
||
|
&.s-logo-nasa {
|
||
|
$m: 10px;
|
||
|
background-image: url($dirImgs + 'logo-nasa.svg');
|
||
|
top: $m; right: auto; bottom: auto; left: $m;
|
||
|
width: $w * 2; height: auto; padding-bottom: $w; padding-top: $w;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.s-logo-holder {
|
||
|
background: url($dirImgs + "bg-about-openmctweb.jpg") no-repeat center; // For OpenMCT Web.
|
||
|
background-size: cover;
|
||
|
}
|
||
|
.s-logo {
|
||
|
background-position: center;
|
||
|
background-repeat: no-repeat;
|
||
|
background-size: contain;
|
||
|
}
|
||
|
.s-logo-openmctweb {
|
||
|
background-image: url($dirImgs + 'logo-openmctweb-shdw.svg');
|
||
|
}
|