blob: 135500a07ec33f40f9fa59270413d15ca94b0d2c (
plain)
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
|
.wiaf-grid {
display: grid;
grid-template-columns: repeat(5, 1fr);
grid-gap: 10px;
}
.wiaf-grid.wiaf-grid-small {
grid-template-columns: repeat(6, 1fr) !important;
}
@media (max-width: 1399px) {
}
@media (max-width: 1199px) {
.wiaf-grid {
grid-template-columns: repeat(4, 1fr) !important;
}
.wiaf-grid.wiaf-grid-small {
grid-template-columns: repeat(5, 1fr) !important;
}
}
@media (max-width: 991px) {
.wiaf-grid {
grid-template-columns: repeat(3, 1fr) !important;
}
.wiaf-grid.wiaf-grid-small {
grid-template-columns: repeat(4, 1fr) !important;
}
}
@media (max-width: 767px) {
.wiaf-grid {
grid-template-columns: repeat(2, 1fr) !important;
}
.wiaf-grid.wiaf-grid-small {
grid-template-columns: repeat(3, 1fr) !important;
}
}
@media (max-width: 300px) {
.wiaf-grid {
grid-template-columns: repeat(1, 1fr) !important;
}
.wiaf-grid.wiaf-grid-small {
grid-template-columns: repeat(2, 1fr) !important;
}
}
@media (max-width: 150px) {
.wiaf-grid.wiaf-grid-small {
grid-template-columns: repeat(1, 1fr) !important;
}
}
.wiaf-grid-item {
text-align: center;
}
.step-outer, .progress {
transition: opacity 200ms;
}
|