-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
50 lines (43 loc) · 753 Bytes
/
Copy pathstyle.css
File metadata and controls
50 lines (43 loc) · 753 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
.fellow_wanted{
position: relative;
}
.fellow_reward{
position: absolute;
width:450px;
top:30px;
left:25px;
background-color:#E6E6E6;
opacity:1;
padding-top:40px;
padding-bottom:40px;
z-index:2;
font-size:30px;
border-radius:10px;
font-family:verdana;
text-align:center;
}
span{
color: #DF3A01;
}
.fellow_picture{
z-index: 1;
opacity:0.5;
}
.fellow_name{
position: absolute;
left: 120px;
bottom: 210px;
color: white;
font-size:55px;
font-family:verdana;
z-index:3;
}
.fellow_wanted:hover .fellow_picture{
opacity: 1;
}
.fellow_wanted:hover .fellow_reward {
display:none;
}
.fellow_wanted:hover .fellow_name {
left:500px;
}