This repository has been archived by the owner on Mar 26, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
layout.css
123 lines (100 loc) · 1.64 KB
/
layout.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
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
/* body */
body {
margin: 0px;
padding: 0px;
background-color: white;
color: black;
}
/* header */
#banner {
background: url('images/hdr-planet.jpg') no-repeat;
background-color: #9db8d2;
background-position: right;
border-bottom: 1px solid #807d74;
height: 48px;
}
#logo {
position: absolute;
top: 10px;
left: 10px;
background: url('http://www.gnome.org/img/logo/text-64') no-repeat;
width: 64px;
height: 64px;
}
#logo img {
border: 0px;
width: 64px;
height: 64px;
}
#hdrNav {
margin-top: 6px;
margin-left: 84px;
margin-right: 190px;
padding-right: 3em;
font-size: small;
}
#hdrNav a {
color: #000000;
}
#body, #page {
margin: 0 190px 0 0;
padding: 1.5em 3em 0em 1em;
}
#body *:first-child, #page *:first-child {
margin-top: 0;
}
#copyright {
clear: both;
padding-bottom: 1em;
text-align: center;
font-size: small;
color: #aaaaaa;
}
#copyright a {
color: #aaaaff;
}
#copyright a:visited {
color: #ffaaaa;
}
/* SIDEBAR */
#sidebar {
position: absolute;
top: 49px;
right: 0px;
/*width: 210px;*/
border-left: 1px solid #ffffff;
background-color: #eeeeee;
}
#sidebar div.section {
width: 190px;
padding: 1em;
border-top: 1px solid #ffffff;
border-bottom: 1px solid #d9d9d9;
}
#sidebar div.section h3 {
font-weight: bold;
font-size: 110%;
}
#sidebar *:first-child {
margin-top: 0;
}
#sidebar *:last-child {
margin-bottom: 0;
}
#sidebar div.section ul {
padding: 0px;
margin: 0px;
list-style-type: none;
}
#sidebar div.section ul ul {
padding-left: 1.5em;
list-style-type: square;
}
#sidebar div.section li {
padding: 0px;
margin: 0px;
font-size: small;
}
#sidebar div.section p {
font-size: small;
}