open-pod/assets/css/app.scss

125 lines
1.9 KiB
SCSS
Raw Normal View History

@import "variables";
@import "~bootstrap/scss/bootstrap";
2020-09-02 23:19:20 +02:00
@font-face {
font-family: "Fira Code";
src: url("fonts/FiraCode-VF.woff2") format("woff2-variations"),
url("fonts/FiraCode-VF.woff") format("woff-variations");
font-weight: 300 700;
font-style: normal;
}
@font-face {
font-family: "Comfortaa";
font-style: normal;
font-weight: 300 700;
src: url("fonts/Comfortaa.woff2") format("woff2-variations"),
url("fonts/Comfortaa.woff") format("woff-variations");
}
:root {
--openpod-red: #f24400;
--openpod-grey: #ccc;
--openpod-red-dark: #732100;
--border: 2px;
}
body,
html {
font-family: "Fira Code", monospace;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: "Comfortaa", cursive;
font-variation-settings: "wght" 700;
}
.homeBodyHtml {
height: unset;
overflow: auto;
}
.wrapper {
height: 100%;
background: var(--openpod-grey);
// border: var(--border) solid var(--openpod-red);
}
.border-right-red {
border-right: none;
}
#desc {
height: 100%;
}
#desc p {
// color: transparent;
// background: linear-gradient(90deg, var(--openpod-red), black);
// -webkit-background-clip: text;
// background-clip: text;
text-align: left;
}
.row-central {
height: 100%;
flex: unset;
min-height: 0;
}
.row-border-red {
border-bottom: var(--border) solid var(--openpod-red);
}
.emoji {
font-size: 2rem;
}
@media (min-width: 576px) {
}
@media (min-width: 768px) {
.homeBodyHtml {
height: 100vh;
min-height: 100vh;
padding: 0;
overflow: hidden;
}
.emoji {
font-family: "Comfortaa", cursive;
font-size: 3rem;
}
.border-right-red {
border-right: var(--border) solid var(--openpod-red);
}
#desc {
column-count: 2;
column-fill: auto;
column-gap: 30px;
}
#desc p {
text-align: justify;
hyphens: auto;
}
}
@media (min-width: 992px) {
}
@media (min-width: 1200px) {
}
@media (min-width: 1400px) {
#desc {
column-count: 3;
}
2020-05-22 22:04:15 +02:00
}