This repository has been archived by the owner on Oct 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
acknowledge.css
105 lines (91 loc) · 2.04 KB
/
acknowledge.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
#contribute {
width: 100%;
padding: 30px 0;
}
#team,
#team li {
list-style-type: none;
margin: 0;
padding: 0;
}
#team {
margin: 0 -10px;
overflow: hidden;
clear: both;
}
#team li {
width: 140px;
height: 140px;
margin: 10px;
float: left;
border-radius: 120px;
background: rgba(255,255,255,0.5);
}
#team li a img {
width: 140px;
height: 140px;
border-radius: 120px;
opacity: .7;
-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
-o-filter: grayscale(100%);
-ms-filter: grayscale(100%);
filter: grayscale(100%);
}
#team li a:hover img {
opacity: 1;
-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
-o-filter: grayscale(100%);
-ms-filter: grayscale(100%);
filter: grayscale(100%);
}
#team li a {
position: relative;
display: block;
}
#team li a:after {
width: 140px;
height: 80px;
display: block;
position: absolute;
top: 0;
content: attr(title);
background: rgb(208, 209, 104);
background: rgba(208, 209, 104, 0.90);
border-radius: 140px;
text-align: center;
padding: 60px 0px 0;
font-size: 10px;
font-weight: bold;
text-transform: uppercase;
color: #434B5C;
color: rgba(67,75,92,0.8);
box-shadow: 0 0 0 1px rgba(208, 209, 104, 0.90), inset 0 0 0 1px rgba(208, 209, 104, 0.90);
opacity: 0;
}
.wf-active #team li a:after {
font-size: 13px;
line-height: 1;
font-weight: 700;
}
#team li a:hover:after {
opacity: 1;
}
/* Transitions for Contributors block */
#team li a img,
#team li a:hover img {
-webkit-transition: all .3s ease-out;
-moz-transition: all .3s ease-out;
-o-transition: all .3s ease-out;
-ms-transition: all .3s ease-out;
transition: all .3s ease-out;
}
#team li a:after,
#team li a:hover:after, {
-webkit-transition: opacity .3s ease-out;
-moz-transition: opacity .3s ease-out;
-o-transition: opacity .3s ease-out;
-ms-transition: opacity .3s ease-out;
transition: opacity .3s ease-out;
}