-
Notifications
You must be signed in to change notification settings - Fork 0
/
facebox.css
124 lines (107 loc) · 1.82 KB
/
facebox.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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
#facebox .n {
background:url(/images/n.png) repeat-x bottom left;
border:none;
height:18px;
}
#facebox .s {
background:url(/images/s.png) repeat-x top left;
border:none;
height:18px;
}
#facebox .w {
background:url(/images/w.png) repeat-y top right;
border:none;
width:13px;
}
#facebox .e {
background:url(/images/e.png) repeat-y top left;
border:none;
width:13px;
}
#facebox .tl {
background:url(/images/nw.png) no-repeat bottom right;
border:none;
}
#facebox .tr {
background:url(/images/ne.png) no-repeat bottom left;
border:none;
}
#facebox .bl {
background:url(/images/sw.png) no-repeat top right;
border:none;
}
#facebox .br {
background:url(/images/se.png) no-repeat top left;
border:none;
}
#facebox {
position: absolute;
width: 100%;
top: 0;
left: 0;
z-index: 100;
text-align: left;
}
#facebox .popup {
position: relative;
}
#facebox table {
margin: auto;
border-collapse: collapse;
}
#facebox td {
border:none;
}
#facebox .body {
padding: 5px;
background: #fff;
width: 500px;
}
#facebox .loading {
text-align: center;
}
#facebox .image {
text-align: center;
}
#facebox img {
border: 0;
}
#facebox .footer {
padding: 5px;
margin-top: 3px;
text-align: center;
}
#facebox .info {
margin-top: 5px;
padding:0 5px;
font-family: "lucida grande",tahoma,verdana,arial,sans-serif;
color: #777;
line-height: 16px;
font-size: 11px;
}
#facebox .navigation {
float: left;
}
#facebox .close {
float: right;
display:inline;
}
#facebox .next, #facebox .prev {
font-size: 170%;
}
#facebox .tl, #facebox .tr, #facebox .bl, #facebox .br {
overflow: hidden;
padding: 0;
}
#facebox .overlay {
position: fixed;
top:0;
left:0;
width:100%;
height:100%;
background-color:#666;
z-index:0;
float:left;
opacity:0.80;
filter:alpha(opacity=80);
}