-
Notifications
You must be signed in to change notification settings - Fork 0
/
queries.css
170 lines (138 loc) · 2.48 KB
/
queries.css
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
@media screen and (max-width: 375px) {
header {
max-width: 375px;
background-position: 8%;
}
.header-title {
font-size: 2em;
margin: 50px 15px 10px;
}
.header-text {
margin: 0;
padding: 8px 34px 20px;
}
.button {
display: flex;
margin: 20px;
padding: 15px 70px;
}
.main-section-title {
font-size: 1.7em;
margin: 0 50px;
}
.main-section-text {
margin: 20px 40px 60px;
}
.attribute {
display: block;
justify-content: center;
align-items: center;
margin: 0;
}
.attribute-image {
justify-content: center;
max-width: 320px;
margin: 0 0 15px 0;
}
.attribute-title {
display: block;
align-items: center;
font-size: 1.4em;
margin: 45px 50px 10px 50px;
}
.attribute-text {
text-align: center;
margin: 0 39px 0 39px;
}
.subsection-title {
font-size: 1.7em;
margin: 170px 50px 10px;
}
.subsection-text {
margin: 10px 30px 50px;
}
.subsection-image {
justify-content: center;
max-width: 350px;
margin-bottom: 80px;
}
.feature-title {
font-size: 1.7em;
margin: 0 75px 10px 75px;
}
.feature-title-text {
margin: 0 50px 20px 50px;
}
.grid {
display: grid;
max-width: 80rem;
padding: 2rem 1.8rem;
margin: 0 auto;
column-gap: 1.3rem;
row-gap: 1rem;
}
.grid--3-cols {
grid-template-columns: repeat(1, 1fr);
}
.feature-subtitle {
font-size: 1.4;
}
.logos {
margin: 50px 0;
}
.b-logos {
max-width: 230px;
padding: 25px 50px;
}
.dw-title {
font-size: 1.7;
margin: 0 26px 15px;
}
.dw-text {
margin: 0 35px 20px;
}
.last-button {
margin-bottom: 120px;
}
footer {
display: block;
justify-content: center;
}
.footer-logo {
margin: 20px 120px 20px;
padding: 50px 0 0;
}
.footer-link {
align-items: center;
margin: 0;
padding: 0;
}
.footer-link li {
padding: 15px;
}
.footer-social {
padding-bottom: 30px;
margin: 30px 25px 0;
justify-content: center;
}
button:active {
transition: all 0.7s ease-in-out;
transform: scale(1.1);
}
li:active {
transition: all 0.7s ease-in-out;
transform: scale(1.1);
}
.fb:active {
transition: all 0.7s ease-in-out;
transform: scale(1.2);
}
.ig:active {
transition: all 0.7s ease-in-out;
transform: scale(1.2);
}
.tw:active {
transition: all 0.7s ease-in-out;
transform: scale(1.2);
}
}