84 lines
1.5 KiB
SCSS
84 lines
1.5 KiB
SCSS
@import "_variables";
|
|
|
|
@font-face {
|
|
font-family: 'Proza Libre';
|
|
font-style: normal;
|
|
font-display: swap;
|
|
font-weight: 400;
|
|
src: local('Proza Libre Regular '),
|
|
local('Proza Libre-Regular'),
|
|
url('/assets/fonts/proza-libre-v4-latin-regular.woff2') format('woff2')
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Proza Libre';
|
|
font-style: normal;
|
|
font-display: swap;
|
|
font-weight: 600;
|
|
src: local('Proza Libre SemiBold '),
|
|
local('Proza Libre-SemiBold'),
|
|
url('/assets/fonts/proza-libre-v4-latin-600.woff2') format('woff2')
|
|
}
|
|
|
|
/* Default */
|
|
html {
|
|
position: relative;
|
|
min-height: 100%;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Open Sans', sans-serif;
|
|
font-size: 16px;
|
|
background-color: #ffad5c;
|
|
}
|
|
|
|
main {
|
|
padding: 0 70px;
|
|
background-color: #fff;
|
|
box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.35);
|
|
border: solid 1px #d9d9d9;
|
|
}
|
|
|
|
.caret::after {
|
|
display: inline-block;
|
|
vertical-align: 0.255em;
|
|
content: "";
|
|
border-top: 0.3em solid;
|
|
border-right: 0.3em solid transparent;
|
|
border-bottom: 0;
|
|
border-left: 0.3em solid transparent;
|
|
}
|
|
|
|
.jpt-button {
|
|
display: flex;
|
|
justify-content: center;
|
|
font-size: 16px;
|
|
font-weight: $font-semibold;
|
|
border: 3px solid $orange;
|
|
border-radius: 4px;
|
|
background-color: transparent;
|
|
|
|
.icon {
|
|
width: 18px;
|
|
height: 18px;
|
|
}
|
|
}
|
|
|
|
.jpt-button-light {
|
|
border-width: 2px;
|
|
}
|
|
|
|
.section-title {
|
|
font-size: 34px;
|
|
font-weight: $font-semibold;
|
|
margin: 100px 0;
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
.border-title {
|
|
margin-left: 40px;
|
|
height: 3px;
|
|
background-color: $orange;
|
|
flex-grow: 1;
|
|
}
|
|
}
|