-
Notifications
You must be signed in to change notification settings - Fork 0
/
_header.scss
70 lines (57 loc) · 1.42 KB
/
_header.scss
1
2
3
4
5
6
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
.header {
padding: 18px 20px 0 19px;
height: calc(812px - 38px);
background:
no-repeat left calc(79% - 73px) bottom -22px/100px url("header/knight.png"),
url('header/texture.jpg'),
no-repeat left 79% bottom -12px / 900px url("header/city.webp"),
fixed no-repeat calc(79% - 37px) 410px/309px url("header/circle.png"),
#e9ded4;
background-blend-mode: normal, color-burn, normal, normal, normal;
}
.header__content {
max-width: 542px;
}
.header__logo {
height: 32px;
margin-bottom: 40px;
}
.header__heading {
margin-bottom: 24px;
}
.header__tagline {
font-size: 18px;
line-height: 130%;
margin-bottom: 32px;
}
.header__buttons {
display: grid;
grid-auto-rows: 47px;
gap: 14px 16px;
}
@include breakpoint {
.header {
padding: 26px 0 0 72px;
height: 700px;
background:
no-repeat calc(46% + 650px) 97% url("header/pawn.png"),
no-repeat calc(46% + 294px) 111% url("header/knight.png"),
url("header/texture.jpg"),
no-repeat left 46% bottom -25px url("header/city-desktop.webp"),
fixed no-repeat calc(46% + 347px) -5% url("header/circle.png"),
#e9ded4;
background-blend-mode: normal, normal, color-burn, normal, normal, normal;
}
.header__logo {
height: 36px;
margin-bottom: 62px;
}
.header__tagline {
text-align: center;
margin-bottom: 24px;
}
.header__buttons {
grid-auto-flow: column;
grid-auto-rows: 72px;
}
}