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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
|
#profile {
float: right;
padding: 20px;
width: 180px;
margin-right:10%;
margin-top:0px;
background-color:#F7F7F7;
background-image:url(/static/cloudbg2.png);
background-position:center;
z-index:10;
box-shadow:rgba(0,0,0,0.5) 0px 0px 24px; border-radius:5px;
border-top-left-radius:5px;
border-top-right-radius:5px;
-webkit-border-top-left-radius:5px;
-webkit-border-top-right-radius:5px;
-moz-border-radius-topleft:5px;
-moz-border-radius-topright:5px;
border-bottom-left-radius:5px;
border-bottom-right-radius:5px;
-webkit-border-bottom-left-radius:5px;
-webkit-border-bottom-right-radius:5px;
-moz-border-radius-bottomleft:5px;
-moz-border-radius-bottomright:5px;
min-height:600px;
}
#chatrap{
top: 105px;
left:0px;
position:absolute;
width: 100%;
margin: 0;
padding-bottom:105px;
}
#footer
{
text-align:center;
position:absolute;
width:100%;
bottom:0px;
font-size:12px;
font-family:"Times New Roman", Times, serif;
background-image:url(/static/footer.png);
background-repeat:repeat-x;
background-position:top;
height:30px;
color: #333;
line-height: 2;
}
#log
{
margin-right:10%;
margin-left:11%;
background-color:#FFF;
padding-left: 20px;
padding-bottom: 20px;
padding-top: 15px;
min-height: 800px;
border-top-left-radius:5px;
border-top-right-radius:5px;
-webkit-border-top-left-radius:5px;
-webkit-border-top-right-radius:5px;
-moz-border-radius-topleft:5px;
-moz-border-radius-topright:5px;
border-bottom-left-radius:5px;
border-bottom-right-radius:5px;
-webkit-border-bottom-left-radius:5px;
-webkit-border-bottom-right-radius:5px;
-moz-border-radius-bottomleft:5px;
-moz-border-radius-bottomright:5px;
border:solid 5px #F5F5F5;
}
#posts {
}
.logged-dump img{
max-width:500px;
width: expression(this.width > 500 ? 500: true);
max-height:400px;
height: expression(this.width > 500 ? 500: true);
border:0px;
z-index:4;
}
.logged-dump{
padding: 15px;
font-family: Arial, Helvetica, sans-serif;
margin-left:15%;
width:50%;
font-size: 12px;
text-transform: uppercase;
border-top-left-radius:5px;border-top-right-radius:5px;-webkit-border-top-left-radius:5px;-webkit-border-top-right-radius:5px;-moz-border-radius-topleft:5px;-moz-border-radius-topright:5px;
border-bottom-left-radius:5px;border-bottom-right-radius:5px;-webkit-border-bottom-left-radius:5px;-webkit-border-bottom-right-radius:5px;-moz-border-radius-bottomleft:5px;-moz-border-radius-bottomright:5px;
min-width:500px;
line-height:15px;
background-color:#F5F5F5;
background-image:/static/footer.png;
background-position:bottom;
border:solid 1px #0f1e31;
z-index:4;
line-height:20px;
text-align: left;
margin:15px;
}
.editable {
color: #0AA;
}
.editing {
color: #F0F;
}
div#avatar {
overflow: hidden;
text-overflow: ellipsis;
}
h2 {color:#989898;
letter-spacing:-1px;
font-weight:lighter;}
img#avatarPic {
max-height:250px;
}
#logged-dump {
border: 1px solid dotted;
padding: 5px;
}
#loghead {
border-bottom:0px;
padding-left: -50px;
margin-right:60%;
width:auto;
letter-spacing:-3px;
color:#087cff;
height:28px;
font-size:33px;
font-family:Arial, Helvetica, sans-serif;
font-weight:bold;
text-transform:capitalize;
text-shadow: -6px 4px 4px #ccc;
padding-bottom:12px;
left: -40px;
}
body {
margin: 0;
}
body,td,th {
font-family: Arial, Helvetica, sans-serif;
}@charset "UTF-8";
/* CSS Document */
|