177 lines
2.7 KiB
SCSS
177 lines
2.7 KiB
SCSS
// General box-sizing
|
|
*,
|
|
*::before,
|
|
*::after {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
|
|
// Margin reset for texts
|
|
h1, h2, p, ul {
|
|
margin: 0;
|
|
}
|
|
|
|
|
|
// General Typography
|
|
body {
|
|
color: $dark-gray;
|
|
font-family: $base-font-family;
|
|
font-size: 16px;
|
|
font-weight: 400;
|
|
}
|
|
|
|
.main-area {
|
|
margin: 0 auto;
|
|
overflow: hidden;
|
|
}
|
|
|
|
|
|
// General container
|
|
.container {
|
|
width: 100%;
|
|
margin-right: auto;
|
|
margin-left: auto;
|
|
}
|
|
@media (min-width: 768px) {
|
|
.container {
|
|
max-width: 750px;
|
|
}
|
|
}
|
|
@media (min-width: 992px) {
|
|
.container {
|
|
max-width: 980px;
|
|
}
|
|
}
|
|
|
|
|
|
// General button
|
|
.btn-main {
|
|
display: inline-block;
|
|
font-weight: 600;
|
|
text-align: center;
|
|
vertical-align: middle;
|
|
-webkit-user-select: none;
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
background-color: $gold;
|
|
border: 1px solid $gold;
|
|
padding: 1.8em 3.4em;
|
|
font-size: 12px;
|
|
letter-spacing: 1px;
|
|
line-height: 1.5;
|
|
border-radius: 50rem;
|
|
transition: all .3s ease;
|
|
text-decoration: none;
|
|
width: fit-content;
|
|
&:hover {
|
|
background-color: lighten($gold, 5%);
|
|
}
|
|
margin-bottom: 10px;
|
|
.btn-split {
|
|
display: inline-flex;
|
|
.btn-logo {
|
|
margin: auto 0px;
|
|
height: 60px;
|
|
}
|
|
.btn-text {
|
|
border-left: 1pt;
|
|
border-left-color: black;
|
|
border-left-style: solid;
|
|
text-align: left;
|
|
padding: 12px 20px;
|
|
height: fit-content;
|
|
margin: auto;
|
|
.button-main-text {
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
}
|
|
.button-sub-text {
|
|
font-size: 11px;
|
|
font-weight: 400;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
.btn-main.btn-slim {
|
|
padding: .5em 2.5em;
|
|
}
|
|
|
|
|
|
// Text utility classes
|
|
.content-text {
|
|
font-family: $text-font-family;
|
|
font-size: 16px;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.caption {
|
|
color: $dark-gray;
|
|
font-family: $text-font-family;
|
|
font-size: 16px;
|
|
margin-top: 8px;
|
|
}
|
|
|
|
.text-black {
|
|
color: $black;
|
|
}
|
|
|
|
.text-center {
|
|
text-align: center;
|
|
}
|
|
|
|
.ls-40 {
|
|
letter-spacing: .4px;
|
|
}
|
|
|
|
.uppercase {
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
|
|
// Spacing utility classes
|
|
.mb-2 {
|
|
margin-bottom: 16px;
|
|
}
|
|
.mt-2 {
|
|
margin-top: 16px;
|
|
}
|
|
|
|
|
|
// Arrows classes
|
|
[class*="icono"] {
|
|
position: relative;
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
color: $white;
|
|
box-sizing: border-box;
|
|
&:after, &:before {
|
|
content: "";
|
|
box-sizing: border-box;
|
|
}
|
|
}
|
|
[class*="icono-arrow"]{
|
|
width: 20px;
|
|
height: 20px;
|
|
border-width: 4px 4px 0 0;
|
|
border-style: solid;
|
|
margin: 10px;
|
|
&:before{
|
|
right: 0;
|
|
top: -3px;
|
|
position: absolute;
|
|
height: 4px;
|
|
box-shadow: inset 0 0 0 32px;
|
|
transform: rotate(-45deg);
|
|
width: 23px;
|
|
transform-origin: right top;
|
|
}
|
|
&[class*="-left"]{
|
|
transform: rotate(45deg);
|
|
}
|
|
&[class*="-right"]{
|
|
transform: rotate(-135deg);
|
|
}
|
|
}
|