You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
164 lines
2.8 KiB
164 lines
2.8 KiB
*,
|
|
*::before,
|
|
*::after {
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body,
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
p,
|
|
figure,
|
|
blockquote,
|
|
dl,
|
|
dd{
|
|
margin: 0;
|
|
}
|
|
|
|
html {
|
|
scroll-behavior: smooth;
|
|
min-height: 100%;
|
|
}
|
|
|
|
body {
|
|
position: relative;
|
|
display: flex;
|
|
flex-direction: column;
|
|
text-rendering: optimizeSpeed;
|
|
-webkit-font-smoothing: antialiased;
|
|
line-height: 1.5;
|
|
font-family: "BarlowCondensed", sans-serif;
|
|
font-size: var(--font-size__base);
|
|
background: #ffffff;
|
|
color: var(--grey-blue);
|
|
min-height: 100vh;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 36px;
|
|
line-height: 1.2;
|
|
letter-spacing: 2px;
|
|
color: var(--dark-blue);
|
|
margin: 30px 0;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 18px;
|
|
margin: 30px 0 var(--gap);
|
|
color: var(--dark-blue);
|
|
}
|
|
|
|
h3 {
|
|
font-size: var(--font-size__base);
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
h4 {
|
|
font-size: var(--font-size__base);
|
|
}
|
|
|
|
@media screen and (min-width: 991px) {
|
|
h1 {
|
|
font-size: 56px;
|
|
}
|
|
h2 {
|
|
font-size: 20px;
|
|
}
|
|
}
|
|
|
|
ul,
|
|
ol {
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
a, a:visited {
|
|
color: var(--dark-blue);
|
|
text-decoration: none;
|
|
cursor: pointer;
|
|
-webkit-transition: all 0.4s ease;
|
|
-o-transition: all 0.4s ease;
|
|
transition: all 0.4s ease;
|
|
}
|
|
|
|
a:hover {
|
|
text-decoration: underline;
|
|
-webkit-transition: all 0.4s ease;
|
|
-o-transition: all 0.4s ease;
|
|
transition: all 0.4s ease;
|
|
}
|
|
|
|
img,
|
|
picture {
|
|
max-width: 100%;
|
|
display: block;
|
|
}
|
|
|
|
button {
|
|
font-family: "BarlowCondensed-Bold", sans-serif;
|
|
font-size: var(--font-size__base);
|
|
letter-spacing: 2px;
|
|
border: none;
|
|
outline: none;
|
|
background-color: transparent;
|
|
padding: 5px 10px;
|
|
border-radius: 5px;
|
|
cursor: pointer;
|
|
-webkit-transition: all 0.4s ease;
|
|
-o-transition: all 0.4s ease;
|
|
transition: all 0.4s ease;
|
|
}
|
|
|
|
button:hover {
|
|
-webkit-transition: all 0.4s ease;
|
|
-o-transition: all 0.4s ease;
|
|
transition: all 0.4s ease;
|
|
}
|
|
|
|
[hidden] {
|
|
display: none !important;
|
|
}
|
|
|
|
input,
|
|
input:focus {
|
|
font-family: "BarlowCondensed", sans-serif;
|
|
font-size: var(--font-size__base);
|
|
padding: 10px 20px;
|
|
border: 1px solid #000000;
|
|
outline: none;
|
|
transition: all 0.4s ease;
|
|
}
|
|
|
|
input:hover {
|
|
box-shadow: 0 0 2px 0 #000000;
|
|
transition: all 0.4s ease;
|
|
}
|
|
|
|
label {
|
|
font-family: "BarlowCondensed-Bold", sans-serif;
|
|
font-size: var(--font-size__base);
|
|
letter-spacing: 2px;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
blockquote {
|
|
background: #f9f9f9;
|
|
border-left: 10px solid #cccccc;
|
|
margin: 20px 0;
|
|
padding: 20px;
|
|
quotes: "\201C""";
|
|
}
|
|
blockquote:before {
|
|
font-family: initial;
|
|
color: #cccccc;
|
|
content: open-quote;
|
|
font-size: 58px;
|
|
line-height: 0;
|
|
margin-right: 15px;
|
|
vertical-align: -15px;
|
|
} |