-
Notifications
You must be signed in to change notification settings - Fork 28
/
sidebar.css
73 lines (73 loc) · 1.08 KB
/
sidebar.css
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
* {
padding: 0;
margin: 0;
}
BODY {
height:100%;
user-select:none;
-moz-user-select:none;
}
#header {
left:0px;
top:0px;
height:38px;
overflow:hidden;
background-image: -moz-linear-gradient(bottom right, rgb(203,104,49), rgb(216,142,64));
border-bottom: 1px solid rgba(0, 0, 0, 0.57);
font-family:"Lucida Grande",Tahoma,sans-serif;
width:100%
}
#testbuttons {
margin: 4px;
}
#signin {
margin-left:6px;
margin-top:6px;
}
#signin a {
float:right;
padding-right:6px;
}
#useridbox {
font-size:10px;
left:0px;
top:4px;
position:absolute;
height:26px;
width:150px;
margin-left:6px;
margin-top:2px;
color:black;
}
#userid {
font-weight:bold;
}
#usericon {
width:32px;
height:32px;
}
#usericonbox {
float:right;
width:32px;
height:32px;
padding-top:2px;
padding-right:4px;
}
#usernotifbox {
float:right;
width:32px;
height:32px;
padding-top:2px;
padding-right:4px;
}
#content {
padding:4px;
margin: 3px;
background-color: white;
}
.textbox {
background-color: white;
padding-top:4px;
margin: 3px;
border: 1px solid blue;
}