blob: cd8be340fdb2521bcb29ab0f34e9e65124e6c044 (
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
122
123
124
125
126
127
128
129
130
131
132
133
|
<head>
<link rel="stylesheet" type="text/css" href="static/reset.css">
<link rel="shortcut icon" href="static/favicon.ico">
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
</head>
<style type="text/css">
<!--
.white a:link {
text-decoration: none;
text-shadow: -1px 1px 1px #ccc;
color: #504F61;
}
.white a:visited {
text-decoration: none;
text-shadow: -1px 1px 1px #ccc;
color: #504F61;
}
.white a:hover {
text-decoration: none;
text-shadow: -1px 1px 1px #ccc;
color: #fff;
}
.white a:active {
text-decoration: none;
text-shadow: -1px 1px 1px #ccc;
color: #504F61;
}
#header7{
background-image:url(/static/dblue2.png);
background-attachment:inherit;
margin: 0px auto -1px auto;
top: 0px;
width:100%;
left: 0px;
height: 69px;
}
#bar7{
top:31px;
position:absolute;
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
width: 500px;
font-size: 20px;
left: 170px;
margin-left: 11%;
margin-right: 8%;
letter-spacing: -1px;
z-index: 999;
}
#logout7{
top:5px;
position:relative;
font-size:13px;
margin-right: 10px;
float:right;
z-index: 999;
font-family: "Times New Roman", Times, serif;
}
#logo7{
top:20px;
margin-left: 10%;
margin-right: 10%;
z-index:1000;
float:left;
}
#rapper7{
top: 0px;
left:0px;
position:absolute;
width: 100%;
height: 78px;
z-index: 1000;
}
p { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; }
td {
font-family: Arial, Helvetica, sans-serif;
letter-spacing:-1px;
font-size: 12px;
color: #000000;
}
.btnav { border: 0px #000000 solid;}
body {
background:#e3e3e3;
background:transparent color(demo/bg-random.gif);
background-position:center;
}
-->
</style>
<body>
<div id="rapper7">
<div id="header7">
<div id="logo7">
<div align="center"><img src="http://www.dump.fm/static/wordlogo2.gif" width="155" height="73"></div>
</div>
<div class="white">
<div id="bar7">
<div style="float: left;">
<div align="center">$if(user_nick)$
<a href="/u/$user_nick$">Home</a> |
$else$ <a href="/register">Join</a> |
$endif$
<a href="/chat">Room A</a>
$if(user_nick)$ $endif$
| Extras | Discover</div>
</div>
</div>
</div>
<div id="logout7" class="white">
<div align="center">$if(user_nick)$ <a href="/logout">Logout</a> $else$ <a href="/" class="btnav">Log In</a>$endif$
</div>
</div>
<div align="center"><br />
</div>
</div>
</div>
</div>
</body>
|