forked from Codeception/codeception.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_support.scss
More file actions
54 lines (45 loc) · 760 Bytes
/
_support.scss
File metadata and controls
54 lines (45 loc) · 760 Bytes
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
.support-wrapper {
.support {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
}
.support-item {
margin: 10px;
width: 180px;
padding: 10px;
border-radius: 4px;
display: flex;
align-items: center;
justify-content: center;
img {
max-width: 100%;
transition: all .15s ease;
opacity: .5;
filter: grayscale(1);
}
&:hover {
img {
opacity: 1;
filter: grayscale(0);
}
}
}
.support-item--premium {
width: 186px;
img {
background-color: #ffffff;
}
}
.container {
padding-bottom: 50px;
}
h4 {
margin-top: 40px;
margin-bottom: 15px;
}
h3 {
margin-bottom: 15px;
}
}