-
Notifications
You must be signed in to change notification settings - Fork 14
/
style.css
112 lines (100 loc) · 1.6 KB
/
style.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
106
107
108
109
110
#background-blocker {
position: fixed;
z-index: 9999;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-color: #F2F2F2;
opacity: .95;
}
#image-grabber-container div,
#image-grabber-container span,
#image-grabber-container p,
#image-grabber-container a
{
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
font-weight: bold;
color: black;
}
#image-grabber-container {
z-index:9999999;
top:0;
right:0;
bottom:0 ;
left:0;
position:absolute !important;
}
#button-toggle {
height:38px;
font-weight:bold;
border-bottom:1px solid silver;
}
#button-toggle span {
margin:0 10px;
cursor: pointer;
line-height:38px;
}
#button-toggle span:hover {
text-decoration: underline;
}
.toggle-backgrounds-on li.background {
display:none;
}
.toggle-images-on li.image {
display:none;
}
#button-toggle .count {
float:right;
}
#list-of-images li:hover {
background:#dcdcdc;
}
#list-of-images {
padding:0;
margin:0;
}
#list-of-images li {
color:black;
float:left;
list-style:none;
background:white;
border-right: 1px solid #E7E7E7;
border-bottom: 1px solid #E7E7E7;
width:200px;
height:200px;
text-align:center;
position: relative;
padding:0;
margin: 0;
}
#list-of-images img {
max-width:200px;
max-height:200px;
opacity:1;
margin:0 auto;
border:0;
padding:0;
}
#list-of-images span {
left: 0;
position: absolute;
z-index: 999;
background: white;
display: block;
bottom: 0;
text-align: center;
line-height: 20px;
opacity: 0.7;
width:100%;
font-size:12px;
}
#list-of-images li a {
color:#666;
font-size:12px;
text-decoration:none;
height:100%;
width:100%;
display: inline-block;
}