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
|
#dashadminmute{
position:absolute;
top:0px;
background-color:red;
padding:5px;
right:0px;
border-bottom-left-radius:5px;
-webkit-border-bottom-left-radius:5px;
-moz-border-radius-bottomleft:5px;
}
#dashadminmute a{color:white;}
#edit-toggle{
position:absolute;
width:80px;
top:-10px;
left:-5px;
}
#dashrapper{
border:1px dotted #0c8fff;
top:80px;
padding:20px;
margin-left:100px;
border-bottom-left-radius:5px;
-webkit-border-bottom-left-radius:5px;
-moz-border-radius-bottomleft:5px;
margin-right:50%;
background-color:white;
width:800px;
min-height:435px;
position:absolute;
}
#dashuserlist{
padding:15px;
border:1px solid black;
width:180px;
min-height:400px;
border-radius:5px;
-webkit-border-radius:5px;
-moz-border-radius:5px;
}
#dashuserlist h2{
font-size:25px;
padding-top:25px;
text-transform:capitalize;
}
#dashuserlist h3{
font-size:18px;
padding-bottom:15px;
padding-top:1px;
text-transform:capitalize;
}
#middash{
top:60px;
position:absolute;
margin-left:230px;
}
#middash h2{
font-family: 'HelveticaNeue-Light','Helvetica Neue Light','Helvetica Neue',Arial,Helvetica,sans-serif;
font-size:50px;
letter-spacing:-2px;
margin-bottom:10px;
}
#middash h3{
font-family: 'HelveticaNeue-Light','Helvetica Neue Light','Helvetica Neue',Arial,Helvetica,sans-serif;
font-size:35px;
letter-spacing:-2px;
line-height:20px;
}
#middash h2{
font-family: 'HelveticaNeue-Light','Helvetica Neue Light','Helvetica Neue',Arial,Helvetica,sans-serif;
font-size:50px;
letter-spacing:-2px;
}
#middash a{
font-size:100%;
}
#middash a:hover{
color:#f9f9f9;background-color:white;
font-size:100%;
text-shadow: -2px 2px 10px #000;
}
#dashinfo{
margin-top:50px;
}
#dashavatar{
}
.dashavatar-bg{
height:100px;
width:100%;
}
#dashpix{
top:0px;
float:right;
padding:15px;
margin-top:-150px;
width:550px;
}
#dashpix img{
width: expression(this.width > 50 ? 50: true);
max-height:100px;
height: expression(this.width > 50 ? 50: true);
max-width:150px;
}
#favstxt{
margin-top:-55px;
margin-left:-10;
font-family: 'HelveticaNeue-Light','Helvetica Neue Light','Helvetica Neue',Arial,Helvetica,sans-serif;
font-size:11px;
background-color:white;
padding:7px;
color:#000;
position:absolute;
text-transform:uppercase;
border:1px solid black;
border-radius: 5px;
box-shadow:5px 5px 5px #d8dbde;
-webkit-box-shadow:5px 5px 5px #d8dbde;
-moz-box-shadow:5px 5px 5px #d8dbde;
border-radius:5px;
-webkit-border-radius:5px;
-moz-border-radius:5px;
}
|