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