]> git.sesse.net Git - pr0n/blob - pr0n-fullscreen.css
Add an option to enter the new fullscreen mode.
[pr0n] / pr0n-fullscreen.css
1 * {
2         margin: 0;
3         padding: 0;
4 }
5
6 body {
7         background-color: black;
8         color: white;
9 }
10 .container {
11         text-align: center;
12 }
13 img {
14         vertical-align: middle;
15 }
16
17 #previous {
18         position: absolute;
19         bottom: 0px;
20         left: 0px;
21         z-index: 1;
22 }
23 #next {
24         position: absolute;
25         bottom: 0px;
26         right: 0px;
27         z-index: 1;
28 }
29 #close {
30         position: absolute;
31         top: 0px;
32         right: 0px;
33         z-index: 1;
34 }
35
36 #preload {
37         position: absolute;
38         left: -2000px;
39         top: -2000px;
40         width: 1px;
41         height: 1px; 
42 /*      left: 10px;
43         top: 10px;
44         width: 20px;
45         height: 20px; */
46 }
47
48 /* IE5/6 madness */
49 html {
50         overflow: hidden;
51 }
52 body
53 {
54         height: 100%;
55 }