blob: db4e49fe9eb7d381cc7103483d8c6b3858b78bf6 (
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
64
65
66
67
68
69
70
71
|
@import "../globalCssVariables";
.icon-bar {
display: flex;
justify-content: space-evenly;
align-items: center;
height: 40px;
width: 100%;
flex-wrap: wrap;
}
.icon-title {
color: $light-color;
text-transform: uppercase;
padding: 5px;
}
.type-icon {
height: 45px;
width: 45px;
color: $light-color;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
font-size: 2em;
}
.fontawesome-icon {
height: 24px;
width: 24px;
}
.filter-description{
text-transform: capitalize;
}
.type-icon:hover {
transform: scale(1.1);
background-color: $darker-alt-accent;
opacity: 1;
+.filter-description {
opacity: 1;
}
}
.type-outer {
display: flex;
flex-direction: column;
align-items: center;
width: 45px;
height: 60px;
}
.filter-description {
font-size: 10;
text-align: center;
height: 15px;
margin-top: 5px;
opacity: 0;
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
|