130 lines
1.9 KiB
CSS
130 lines
1.9 KiB
CSS
:root {
|
|
--red: #ea0016;
|
|
--dark-blue: #005691;
|
|
--dark-blue-w75: #bfd5e3;
|
|
--dark-green: #006249;
|
|
--dark-green-w75: #bfd8d1;
|
|
--turquoise: #00a8b0;
|
|
--turquoise-w75: #bfe9eb;
|
|
--fuchsia: #b90276;
|
|
--fuchsia-w75: #edc0dd;
|
|
--light-gray: #bfc0c2;
|
|
--light-gray-w75: #efeff0;
|
|
--dark-gray: #525f6b;
|
|
--light-green: #78be20;
|
|
}
|
|
|
|
* {
|
|
font-family: "Bosch Office Sans", sans-serif;
|
|
font-weight: normal;
|
|
}
|
|
|
|
.remark-slide-number {
|
|
bottom: 38px;
|
|
left: 28px;
|
|
opacity: 1;
|
|
color: #979ea6;
|
|
font-size: 18px;
|
|
}
|
|
|
|
.footer {
|
|
color: #000;
|
|
position: absolute;
|
|
bottom: 10px;
|
|
font-size: 9px;
|
|
left: 39px;
|
|
}
|
|
|
|
.intern {
|
|
color: #d70011;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.title {
|
|
background-image: url("./title.svg");
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
|
|
color: #FFF;
|
|
}
|
|
|
|
.remark-slide-content {
|
|
padding: 24px 28px;
|
|
}
|
|
|
|
.title h1 {
|
|
font-size: 100px;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.title .remark-slide-number, .no-number .remark-slide-number {
|
|
display: none;
|
|
}
|
|
|
|
.content {
|
|
background-image: url("./content.svg");
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
}
|
|
|
|
.content h1, .content h2 {
|
|
margin: 0;
|
|
font-size: 40px;
|
|
}
|
|
|
|
.content div.text {
|
|
margin-top: 28px;
|
|
}
|
|
|
|
.content .text ul {
|
|
margin: 0;
|
|
list-style: url("./li.svg");
|
|
padding-left: 32px;
|
|
}
|
|
|
|
.content .text li {
|
|
font-size: 26px;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.content .text li > ul {
|
|
margin-top: 8px;
|
|
}
|
|
|
|
.content .text li > ul li {
|
|
font-size: 23px;
|
|
}
|
|
|
|
.iframe-wrapper {
|
|
overflow: hidden;
|
|
height: 543px;
|
|
}
|
|
|
|
iframe {
|
|
border: 1px solid var(--light-gray);
|
|
-moz-transform: scale(0.8);
|
|
-moz-transform-origin: 0 0;
|
|
}
|
|
|
|
.img-max {
|
|
display: block;
|
|
height: 460px;
|
|
}
|
|
|
|
.img-max > img {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
/*chapter themes*/
|
|
.theme-dark-green h2 {
|
|
color: var(--dark-green);
|
|
}
|
|
|
|
.theme-turquoise h2 {
|
|
color: var(--turquoise);
|
|
}
|
|
|
|
.theme-dark-blue h2 {
|
|
color: var(--dark-blue);
|
|
} |