538 lines
8.8 KiB
CSS
538 lines
8.8 KiB
CSS
|
|
:root {
|
|
--red:#c52a28;
|
|
--gray: #5B6970;
|
|
--sans-serif: "OpenSans";
|
|
--serif: "Lora";
|
|
}
|
|
|
|
svg {
|
|
width: auto;
|
|
height: auto;
|
|
}
|
|
|
|
:not(svg *) {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
border: none;
|
|
font-size: 0;
|
|
}
|
|
|
|
html {
|
|
overflow-x: hidden;
|
|
font-size: 16px;
|
|
}
|
|
|
|
body {
|
|
position: relative;
|
|
min-height: 100vh;
|
|
max-width: 100vw;
|
|
overflow: hidden;
|
|
background: white;
|
|
}
|
|
|
|
#content {
|
|
position: relative;
|
|
display: grid;
|
|
grid-template-rows: max-content auto max-content;
|
|
height: 100%;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
/*---Fonts---------------------------------------------------------*/
|
|
|
|
@font-face {
|
|
font-family: 'OpenSans';
|
|
font-weight: 400;
|
|
font-style: normal;
|
|
font-display: swap;
|
|
src: /*local('Space Grotesk Light'),
|
|
local('SpaceGroteskLight-Regular'),
|
|
local('Space Grotesk Light Regular'), */
|
|
url('/fonts/OpenSans/opensans.woff2') format('woff2'),
|
|
url('/fonts/OpenSans/opensans.woff') format('woff');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Lora';
|
|
font-weight: 400;
|
|
font-style: normal;
|
|
font-display: swap;
|
|
src:
|
|
url('/fonts/LoraSerif/Lora-Regular.ttf') format('ttf'),
|
|
url('/fonts/LoraSerif/Lora-Regular.woff') format('woff'),
|
|
url('/fonts/LoraSerif/Lora-Regular.woff2') format('woff');
|
|
}
|
|
|
|
.serif {
|
|
font-family: var(--serif)
|
|
}
|
|
|
|
.sans-serif {
|
|
font-family: var(--sans-serif)
|
|
}
|
|
|
|
|
|
/*---Text related------------------------------------------------------------------------------*/
|
|
|
|
b {
|
|
font-family: inherit;
|
|
font-size: inherit;
|
|
}
|
|
|
|
h1 {
|
|
font-family: var(--sans-serif, sans-serif);
|
|
color: #222222;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 1.7rem;
|
|
font-family: var(--sans-serif, sans-serif);
|
|
font-weight: bold;
|
|
color: #222222;
|
|
}
|
|
|
|
h3 {
|
|
font-family: var(--sans-serif, sans-serif);
|
|
font-size: 1.5rem;
|
|
color: #222222;
|
|
}
|
|
|
|
h4 {
|
|
font-family: var(--sans-serif, sans-serif);
|
|
font-size: 1.3rem;
|
|
color: #222222;
|
|
}
|
|
|
|
span {
|
|
font-family: var(--serif, serif);
|
|
font-size: 1.15rem;
|
|
height: auto;
|
|
width: auto;
|
|
color: #222222;
|
|
}
|
|
|
|
p {
|
|
font-family: var(--serif, serif);
|
|
font-size: 1.15rem;
|
|
line-height: 160%;
|
|
color: #222222;
|
|
}
|
|
|
|
a {
|
|
font-family: var(--serif, serif);
|
|
font-size: 1.15rem;
|
|
color: #222222;
|
|
}
|
|
|
|
li {
|
|
font-family: var(--serif, serif);
|
|
font-size: 1.15rem;
|
|
color: #222222;
|
|
text-align: justify;
|
|
}
|
|
|
|
b,i,s {
|
|
font-family: inherit;
|
|
font-size: inherit;
|
|
line-height: inherit;
|
|
color: #222222;
|
|
}
|
|
|
|
label {
|
|
font-family: var(--serif, serif);
|
|
font-size: 1rem;
|
|
color: #222222;
|
|
}
|
|
|
|
sup {
|
|
font-size: inherit;
|
|
vertical-align: top;
|
|
position: relative;
|
|
top: -0.682rem;
|
|
color: #222222;
|
|
}
|
|
|
|
sub {
|
|
font-size: inherit;
|
|
vertical-align: top;
|
|
position: relative;
|
|
top: 0.34rem;
|
|
color: #222222;
|
|
}
|
|
|
|
a:link { text-decoration: none; }
|
|
|
|
a:visited { text-decoration: none; }
|
|
|
|
a:hover { text-decoration: none; }
|
|
|
|
a:active { text-decoration: none; }
|
|
|
|
a:focus { text-decoration: none; }
|
|
|
|
.justify {
|
|
text-align: justify;
|
|
}
|
|
|
|
.center {
|
|
width: 100%;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
text-align: center;
|
|
}
|
|
|
|
.left {
|
|
text-align: left;
|
|
}
|
|
|
|
.bold {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.margin-end {
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.margin-end2 {
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.text p, .text li {
|
|
font-size: 1.2rem;
|
|
font-family: var(--serif);
|
|
line-height: 170%;
|
|
}
|
|
|
|
.text li {
|
|
margin-left: 1.5rem;
|
|
margin-bottom: 0.5rem;
|
|
line-height: 140%;
|
|
}
|
|
|
|
.text ul p {
|
|
margin-bottom: 0.25rem;
|
|
}
|
|
|
|
.text h2 {
|
|
width: max-content;
|
|
position: relative;
|
|
text-align: center;
|
|
margin: auto;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.title-highlight {
|
|
position: relative;
|
|
}
|
|
|
|
.title-highlight::before {
|
|
position: absolute;
|
|
margin-left: -0.68rem;
|
|
margin-top: -0.14rem;
|
|
width: 2.5rem;
|
|
height: 0rem;
|
|
content: "";
|
|
border-left: 0.19rem solid var(--pink);
|
|
border-top: 0.19rem solid var(--pink);
|
|
border-radius: 1rem;
|
|
}
|
|
|
|
.title-highlight::after {
|
|
position: absolute;
|
|
left:0;
|
|
top: 0;
|
|
margin-left: -0.68rem;
|
|
margin-top: -0.14rem;
|
|
width: 0rem;
|
|
height: 1.7rem;
|
|
content: "";
|
|
border-left: 0.19rem solid var(--pink);
|
|
border-top: 0.19rem solid var(--pink);
|
|
border-radius: 1rem;
|
|
}
|
|
|
|
.text h3 {
|
|
margin-top: 1rem;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.text h4 {
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.text p {
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.text ul>ul>li {
|
|
margin-left: 2.5rem;
|
|
margin-bottom: 0.5rem;
|
|
line-height: 140%;
|
|
}
|
|
|
|
font {
|
|
font-size: inherit;
|
|
font-family: inherit;
|
|
}
|
|
|
|
/*---Button/input related--------------------------------------------------------------*/
|
|
|
|
button {
|
|
cursor: pointer;
|
|
}
|
|
|
|
button {
|
|
background: transparent;
|
|
}
|
|
|
|
button:focus {
|
|
outline:0;
|
|
}
|
|
|
|
|
|
input[type="text"],input[type="email"],input[type="password"],input[type="number"] {
|
|
font-family: var(--serif, serif);
|
|
background-color: white;
|
|
border-radius: 0.4rem;
|
|
border-color: black;
|
|
border: black solid 0.063rem;
|
|
padding-left: 0.5rem;
|
|
font: 1.15rem var(--serif, serif);
|
|
}
|
|
|
|
input[type="text"] {
|
|
-webkit-appearance: textfield;
|
|
-moz-appearance: textfield;
|
|
appearance: textfield;
|
|
color: #353535;
|
|
}
|
|
|
|
input[type="email"] {
|
|
-webkit-appearance: textfield;
|
|
-moz-appearance: textfield;
|
|
appearance: textfield;
|
|
font-weight: normal;
|
|
color: #353535;
|
|
height: 2.7rem;
|
|
padding-left: 0.34rem;
|
|
}
|
|
|
|
input[type="password"] {
|
|
padding-left: 0.34rem;
|
|
-webkit-appearance: textfield;
|
|
-moz-appearance: textfield;
|
|
appearance: textfield;
|
|
font-weight: normal;
|
|
color: #353535;
|
|
}
|
|
|
|
input[type="number"] {
|
|
-webkit-appearance: textfield;
|
|
-moz-appearance: textfield;
|
|
appearance: textfield;
|
|
color: #353535;
|
|
}
|
|
|
|
input[type=number]::-webkit-inner-spin-button,
|
|
input[type=number]::-webkit-outer-spin-button {
|
|
-webkit-appearance: none;
|
|
}
|
|
|
|
/*---Scroll button---------------------------------------------------------------------*/
|
|
|
|
.scroll-button {
|
|
cursor: pointer;
|
|
background-color: #EBF7FB;
|
|
border-color: #EBF7FB;
|
|
height: 3.822rem;
|
|
width: 3.822rem;
|
|
border-radius: 3.822rem;
|
|
border: 0;
|
|
margin: 0;
|
|
padding-top: 0.505rem;
|
|
}
|
|
|
|
.scroll-button img {
|
|
width: 1.9rem;
|
|
padding-bottom: 0.4rem;
|
|
height: auto;
|
|
}
|
|
|
|
.next {
|
|
padding-left: 0.382rem;
|
|
}
|
|
|
|
.prev {
|
|
padding-right: 0.382rem;
|
|
}
|
|
|
|
|
|
/*---Grid related----------------------------------------------------------------------*/
|
|
|
|
.column {
|
|
display: grid;
|
|
grid-auto-flow: column
|
|
}
|
|
|
|
.center-items {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
|
|
/*---Fillers-------------------------------------------------------------------------*/
|
|
|
|
.filler1 {
|
|
width: 100%;
|
|
height: 0.655rem;
|
|
display: inline-block;
|
|
}
|
|
|
|
.filler2 {
|
|
width: 100%;
|
|
height: 1.263rem;
|
|
display: inline-block;
|
|
}
|
|
|
|
.filler3 {
|
|
width: 100%;
|
|
height: 2.525rem;
|
|
display: inline-block;
|
|
}
|
|
|
|
.filler4 {
|
|
width: 100%;
|
|
height: 3.822rem;
|
|
display: inline-block;
|
|
}
|
|
|
|
.filler5 {
|
|
width: 100%;
|
|
height: 5.05rem;
|
|
display: inline-block;
|
|
}
|
|
|
|
.filler6 {
|
|
width: 100%;
|
|
height: 6.347rem;
|
|
display: inline-block;
|
|
}
|
|
|
|
|
|
/*---Margins------------------------------------------------------------------------*/
|
|
|
|
.bmargin1 {
|
|
margin-bottom: 0.5rem
|
|
}
|
|
|
|
.bmargin2 {
|
|
margin-bottom: 1rem
|
|
}
|
|
|
|
.bmargin3 {
|
|
margin-bottom: 1.5rem
|
|
}
|
|
|
|
.tmargin1 {
|
|
margin-top: 0.5rem
|
|
}
|
|
|
|
.tmargin2 {
|
|
margin-top: 1rem
|
|
}
|
|
|
|
.tmargin3 {
|
|
margin-top: 1.5rem
|
|
}
|
|
|
|
|
|
/*---Other-------------------------------------------------------------------------*/
|
|
|
|
.flex-column {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.flex-row {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.pane {
|
|
background: white;
|
|
border: 0.1rem solid rgb(187, 187, 187);
|
|
border-radius: 0.635rem;
|
|
}
|
|
|
|
.pane-container {
|
|
margin-top: min(3vw, 1rem);
|
|
margin-bottom: 3.1rem;
|
|
display: grid;
|
|
grid-auto-flow: column;
|
|
column-gap: 5rem;
|
|
}
|
|
|
|
.pane-centering {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
.main-pane {
|
|
position: relative;
|
|
margin: auto;
|
|
height: min-content;
|
|
max-width: 66rem;
|
|
width: 66rem;
|
|
z-index: 1;
|
|
}
|
|
|
|
.clicked {
|
|
background-color: hsla(344, 73%, 57%, 0.25);
|
|
}
|
|
|
|
@media only screen and (max-width: 1117px) {
|
|
.main-pane {
|
|
width: 100%;
|
|
}
|
|
|
|
}
|
|
|
|
/*---Scaling-----------------------------------------------------------------------*/
|
|
|
|
html {
|
|
font-size: 16px;
|
|
}
|
|
|
|
@media only screen and (max-width: 660px) {
|
|
html {
|
|
font-size: 15px;
|
|
}
|
|
}
|
|
|
|
@media only screen and (max-width: 570px) {
|
|
html {
|
|
font-size: 14.5px;
|
|
}
|
|
}
|
|
|
|
@media only screen and (max-width: 470px) {
|
|
html {
|
|
font-size: 14px;
|
|
}
|
|
}
|
|
|
|
@media only screen and (max-width: 400px) {
|
|
html {
|
|
font-size: 13.5px;
|
|
}
|
|
}
|
|
|
|
@media only screen and (max-width: 360px) {
|
|
html {
|
|
font-size: 13px;
|
|
}
|
|
} |