mirror of
https://github.com/nasa/openmct.git
synced 2024-12-23 06:52:24 +00:00
9686384619
> > WTD-668 > WTD-700 Pulling over platform-specific CSS and imagery for About screen and status bar logo; In progress
58 lines
1.1 KiB
SCSS
58 lines
1.1 KiB
SCSS
// General About dialog styling
|
|
|
|
.t-about {
|
|
// Styling
|
|
line-height: 120%;
|
|
.s-description,
|
|
.s-info {
|
|
font-size: 0.8em;
|
|
}
|
|
.s-logo-holder {
|
|
background: url($dirImgs + "bg-lunar-1.jpg") center no-repeat;
|
|
background-size: cover;
|
|
}
|
|
.s-logo {
|
|
// @include txtShdwLarge(); // text-shadow doesn't work for svg
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
background-size: contain;
|
|
}
|
|
h1, h2 {
|
|
color: #fff;
|
|
font-weight: normal !important;
|
|
}
|
|
|
|
// Layout
|
|
&.l-about.abs {
|
|
// top: 20px;
|
|
overflow: auto;
|
|
}
|
|
$contentH: 200px;
|
|
.l-logo-holder {
|
|
position: relative;
|
|
height: 45%;
|
|
.l-logo {
|
|
$w: 5%;
|
|
position: absolute;
|
|
&.l-logo-app {
|
|
// @include test(blue);
|
|
top: 0; right: $w * 5; bottom: 0; left: $w * 5;
|
|
// height: auto; width: auto;
|
|
}
|
|
&.s-logo-nasa {
|
|
// @include test(red);
|
|
$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;
|
|
}
|
|
}
|
|
}
|
|
.l-content {
|
|
// @include test();
|
|
position: relative;
|
|
margin-top: $interiorMarginLg;
|
|
}
|
|
}
|
|
|