-
Notifications
You must be signed in to change notification settings - Fork 0
/
_mobile.scss
95 lines (95 loc) · 2.27 KB
/
_mobile.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
@media (max-width: 767px) {
.center {
padding-left: 16px;
padding-right: 16px;
}
.top {
height: auto;
padding-top: 238px;
padding-bottom: 238px;
display: flex;
flex-direction: column;
align-items: center;
gap: 32px;
background-image: url(imgs/BGITop_mob.jpg);
&__header {
width: auto;
font-size: 32px;
text-align: center;
}
&__text {
font-size: 14px;
margin: 0;
width: auto;
text-align: center;
}
&__button {
margin: 0;
}
}
.games {
height: 1221px;
gap: 32px;
padding-top: 128px;
padding-bottom: 128px;
box-sizing: border-box;
grid-template-columns: repeat(4, 1fr);
&__item {
&-1 {
background-image: url(imgs/Game1_mob.jpg);
}
&-2 {
background-image: url(imgs/Game2_mob.jpg);
}
&-3 {
background-image: url(imgs/Game3_mob.jpg);
}
}
}
.seasons {
grid-template-columns: repeat(4, 1fr);
&__content {
grid-column: span 4;
margin-top: 51px;
margin-bottom: 0px;
align-items: center;
&_header {
font-size: 32px;
}
&_text {
text-align: center;
font-size: 14px;
line-height: 22px;
}
}
&__logo {
grid-column: span 4;
margin-top: 64px;
margin-bottom: 85px;
}
}
.words {
grid-template-columns: repeat(4, 1fr);
&__logo {
order: 2;
grid-column: span 4;
margin-top: 64px;
margin-bottom: 90px;
}
&__content {
order: 1;
grid-column: span 4;
margin-top: 51px;
margin-bottom: 0px;
align-items: center;
&_header {
font-size: 32px;
}
&_text {
text-align: center;
font-size: 14px;
line-height: 22px;
}
}
}
}