-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclick.css
More file actions
63 lines (53 loc) · 1.28 KB
/
Copy pathclick.css
File metadata and controls
63 lines (53 loc) · 1.28 KB
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
.ClickPicOverlay {
-webkit-transition: all 0.8s ease;
transition: all 0.8s ease;
-webkit-transition: height 0.8s ease-in;
transition: height 0.8s ease-in;
-webkit-transition: max-height 0.8s ease-out;
transition: max-height 0.8s ease-out;
bottom: 0;
background: rgba(0,0,0,0.45);
position: absolute;
padding: 5px;
padding-left: 2px;
text-align: center;
width: 100%;
height: 95%;
max-height: 32px;
color: white;
font-size: 15px;
font-family: 'Century Gothic', sans-serif;
}
.ClickPicOverlay:hover {
max-height: 300px;
}
a.ClickPicAnchor:link {
z-index: 999999;
color: white;
line-height: 2.0;
}
a.ClickPicAnchor:visited {
z-index: 999999;
color: white;
}
a.ClickPicAnchor:hover {
z-index: 999999;
/*color: rgb(168, 254, 255);*/
color: white;
}
i.fa.grow.shrink {
}
.shrink {
-webkit-transition: all 0.5s ease; /* Safari and Chrome */
-moz-transition: all 0.5s ease; /* Firefox */
-ms-transition: all 0.5s ease; /* IE 9 */
-o-transition: all 0.5s ease; /* Opera */
transition: all 0.5s ease;
}
.grow:hover {
-webkit-transform:scale(2.25); /* Safari and Chrome */
-moz-transform:scale(2.25); /* Firefox */
-ms-transform:scale(2.25); /* IE 9 */
-o-transform:scale(2.25); /* Opera */
transform:scale(2.25);
}