projects
/
pr0n
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Add a new and very hip fullscreen interface; not exposed to the users just yet,
[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
}
34
35
/* IE5/6 madness */
36
html
37
{
38
overflow: hidden;
39
}
40
41
body
42
{
43
height: 100%;
44
overflow: auto;
45
}