You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
135 lines
2.1 KiB
SCSS
135 lines
2.1 KiB
SCSS
// Copyright (C) 2021 Intel Corporation
|
|
//
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
/* Increased left padding on the sidebar of documentation */
|
|
|
|
.td-sidebar-nav__section-title .td-sidebar-nav__section {
|
|
padding-left: 0.3rem;
|
|
}
|
|
|
|
/* Main documentation page */
|
|
|
|
#docs section {
|
|
padding-top: 2rem;
|
|
padding-bottom: 7rem;
|
|
}
|
|
|
|
#docs .row div {
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
/* Footer */
|
|
|
|
.footer-disclaimer {
|
|
font-size: 0.83rem;
|
|
line-height: 1.25;
|
|
margin-top: 0.5rem;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.container-fluid footer {
|
|
min-height: inherit;
|
|
padding-bottom: 0.5rem !important;
|
|
padding-top: 2rem !important;
|
|
}
|
|
|
|
/* Icon color for temporary page */
|
|
|
|
#temporary-page i {
|
|
color: lightgrey;
|
|
}
|
|
|
|
/* About page */
|
|
|
|
.logo-2 {
|
|
opacity: 0.8;
|
|
}
|
|
|
|
.history #year h2 {
|
|
text-shadow: 0 0 3px rgb(27, 27, 27);
|
|
}
|
|
|
|
/* block location */
|
|
|
|
.location {
|
|
width: 70%;
|
|
}
|
|
|
|
.marker-location i {
|
|
color: lightgray;
|
|
}
|
|
|
|
/* World map block "the team" */
|
|
|
|
.team-container {
|
|
margin: auto;
|
|
max-width: 1200px;
|
|
}
|
|
|
|
.world-map-container {
|
|
width: 100%;
|
|
}
|
|
|
|
#world-map {
|
|
z-index: 1;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
#world-map-marker {
|
|
z-index: 2;
|
|
position: absolute;
|
|
border-radius: 50%;
|
|
border: 2px white solid;
|
|
box-shadow: 2px 2px 1px gray;
|
|
max-height: 27px;
|
|
}
|
|
|
|
@media (max-width: 1680px) {
|
|
#world-map-marker {
|
|
margin-left: 25px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 1540px) {
|
|
#world-map-marker {
|
|
margin-left: 35px;
|
|
max-height: 25px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 1200px) {
|
|
#world-map-marker {
|
|
margin-top: 5px;
|
|
margin-left: 40px;
|
|
max-height: 20px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 992px) {
|
|
#world-map-marker {
|
|
margin-top: 10px;
|
|
margin-left: 30px;
|
|
max-height: 15px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
#world-map-marker {
|
|
margin-top: 15px;
|
|
margin-left: 15px;
|
|
max-height: 10px;
|
|
}
|
|
}
|
|
|
|
#world-map-marker:hover {
|
|
border: 4px white solid;
|
|
}
|
|
|
|
/* cover block on about page */
|
|
|
|
#td-cover-block-0 {
|
|
background-image: url("../images/background-about-page.jpg");
|
|
}
|