blob: c53d4203c68d844032acb2a8227607f75eafff2e (
plain)
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
|
body {
margin: 0px;
background-color: #fff;
font-family: Arial, Helvetica, sans-serif;
background: #f0f9ff url(/static/img/fade-blue.png) top center repeat-x;
background-attachment: fixed;
}
.memes {
overflow: auto;
}
#rapper {
background-color: #f2f9fe;
width: 800px;
margin: 0 auto 0 auto;
background-position: top center;
background-image: url(/static/img/blue2fade.png);
background-repeat: repeat-x;
box-shadow: 0 0 10px #000;
-webkit-box-shadow: 0 0 10px #000;
-moz-box-shadow: 0 0 10px #000;
}
#rapper img {
max-width: 750px;
padding: 20px;
}
#footer {
padding-bottom: 5px;
padding-top: 15px;
text-align: center;
color: #000;
font-size: 11px;
word-spacing: 30px;
margin: 0 auto 0 auto;
width: 798px;
}
#footer a {
text-decoration: none;
}
#infotxt {
font-family: "courier new", typewriter, matrix, monospace;
line-height: 15px;
background-image: url(/static/img/bg.dither.gif);
width: 130px;
padding: 10px;
position: fixed;
top: 0px;
left: 0px;
font-size: 12px;
text-align: left;
box-shadow: 0 0 4px #000;
-webkit-box-shadow: 0 0 4px #000;
-moz-box-shadow: 0 0 4px #000;
margin: -1;
}
#registertxt {
border-bottom-left-radius: 10px;
-webkit-border-bottom-left-radius: 10px;
-moz-border-radius-bottomleft: 10px;
position: fixed;
background-color: white;
right: 0;
top: 0px;
text-align: right;
background-image: url(/static/img/bg.dither.gif);
padding: 5px;
font-family: Helvetica, sans-serif;
font-size: 18px;
line-height: 22px;
box-shadow: 0 0 4px #000;
-webkit-box-shadow: 0 0 4px #000;
-moz-box-shadow: 0 0 4px #000;
}
.together {
display: block;
}
.together img {
width: 230px;
display: inline-block;
}
.returnlink {
text-decoration: none;
font-family: Arial, Helvetica, sans-serif;
color: #f0e;
}
.returnlink a:hover {
text-decoration: none;
font-family: Arial, Helvetica, sans-serif;
color: blue;
}
a.img_roll:link,
.img_roll {
width: 130px;
height: 46px;
display: block;
background-image: url(/static/img/dumppixel.png);
}
a.img_roll:hover {
width: 130px;
height: 46px;
display: block;
background-image: url(/static/img/dumppixelhover.png);
}
a {
text-decoration: none;
color: #f0e;
font-size: 100%;
}
|