blob: 78c04499557d9db5de894040ae0ddca22fd2dad6 (
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
|
html {
font-family: 'Cabin', Helvetica, Arial, sans-serif;
}
body {
overflow:hidden;
}
.master {
margin-left:0px;
margin-right:0px;
height:100%;
background: #FFF;
border-width: 1px;
border-style: solid;
overflow: hidden;
}
.header {
height: 33px;
padding-left: 5px;
width: auto;
background: #EEE;
border-width: 1px;
border-bottom-style: solid;
}
.sidebar {
width: 185px;
background: #EEE;
height: 500px;
border-width: 1px;
border-right-style: solid;
padding-top:15px;
padding-left:15px;
}
.loggedinas {
right:15px;
top:15px;
position:absolute;
}
#button {
padding: 0;
height:30px;
margin: 0px;
padding-bottom: 2px;
}
#button li {
display: inline;
}
#button li a {
font-family: Arial;
font-size:11px;
text-decoration: none;
float:left;
padding: 10px;
background-color: #EEE;
height:13px;
color: #000;
}
#button li a:hover {
background-color: #A8BEE3;
padding-bottom:10px;
}
#a.current {
color:navy;
}
.content {
left:220px;
top:50px;
position:absolute;
}
.footer {
margin-left:auto;
margin-right:auto;
text-align:center;
height: 30px;
width:100%;
background: #FFF;
overflow: hidden;
}
.sidenav {
list-style-type: none;
background: #EEE
}
.sidenav a {
color:black;
text-decoration:none;
}
.sidenav a:hover{
color:black;
background:#FFF;
text-decoration:underline;
}
|