Newer
Older
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
color: white;
box-sizing: border-box;
}
$content-width: 1200px;
$breakpoint: 1200px;
body,
html {
overflow-x: hidden;
background: $black;
}
@mixin nav-height() {
height: 80px;
@media all and (max-width: $breakpoint) {
height: 75px;
}
}
@mixin margin-nav-height() {
margin-top: 80px;
@media all and (max-width: $breakpoint) {
margin-top: 75px;
}
}
@mixin button($color, $bg-color) {
cursor: pointer;
display: flex;
text-decoration: none;
align-items: center;
@media all and (min-width: $breakpoint) {
& > div:not(:last-child) {
margin-right: 1rem;
}
}
justify-content: space-between;
background: $bg-color;
color: $color;
border-radius: 2px;
width: 100%;
height: 56px;
max-width: fit-content;
padding: 1rem;
margin: 2rem 0;
border: 0;
transition: all 400ms ease;
&:hover {
font-weight: 900;
color: white;
font-size: 1.625rem;
line-height: 2rem;
}
.text-36-white {
font-weight: 900;
font-size: 2.25rem;
}
.yellow {
color: $yellow;
}
@media all and (max-width: $breakpoint) {
.text-36-white,
.text-36-black {
font-size: 1.85rem;
}
}