ctf-2011
old assets from capture-the-flag ictf 2011
git clone https://9o.is/git/ctf-2011.git
facebox.css
(1160B)
1 #facebox {
2 position: absolute;
3 top: 0;
4 left: 0;
5 z-index: 100;
6 text-align: left;
7 }
8
9
10 #facebox .popup{
11 position:relative;
12 border:3px solid rgba(0,0,0,0);
13 -webkit-border-radius:5px;
14 -moz-border-radius:5px;
15 border-radius:5px;
16 -webkit-box-shadow:0 0 18px rgba(0,0,0,0.4);
17 -moz-box-shadow:0 0 18px rgba(0,0,0,0.4);
18 box-shadow:0 0 18px rgba(0,0,0,0.4);
19 }
20
21 #facebox .content {
22 display:table;
23 width: 570px;
24 padding: 10px;
25 background: #fff;
26 -webkit-border-radius:4px;
27 -moz-border-radius:4px;
28 border-radius:4px;
29 }
30
31 #facebox .content > p:first-child{
32 margin-top:0;
33 }
34 #facebox .content > p:last-child{
35 margin-bottom:0;
36 }
37
38 #facebox .close{
39 position:absolute;
40 top:5px;
41 right:5px;
42 padding:2px;
43 background:#fff;
44 }
45 #facebox .close img{
46 opacity:0.3;
47 }
48 #facebox .close:hover img{
49 opacity:1.0;
50 }
51
52 #facebox .loading {
53 text-align: center;
54 }
55
56 #facebox .image {
57 text-align: center;
58 }
59
60 #facebox img {
61 border: 0;
62 margin: 0;
63 }
64
65 #facebox_overlay {
66 position: fixed;
67 top: 0px;
68 left: 0px;
69 height:100%;
70 width:100%;
71 }
72
73 .facebox_hide {
74 z-index:-100;
75 }
76
77 .facebox_overlayBG {
78 background-color: #000;
79 z-index: 99;
80 }