-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase.css
More file actions
59 lines (51 loc) · 928 Bytes
/
base.css
File metadata and controls
59 lines (51 loc) · 928 Bytes
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
body{
margin: 0;
padding: 0;
overflow: hidden;
height: 100%;
max-height: 100%;
font-family:Sans-serif;
line-height: 1.5em;
}
#nav{
position: absolute;
top: 0;
bottom: 0;
left: 0;
width: 230px; /* Width of navigation frame */
height: 100%;
overflow: hidden; /* Disables scrollbars on the navigation frame. To enable scrollbars, change "hidden" to "scroll" */
background: gray;
}
main{
position: fixed;
top: 0;
left: 230px; /* Set this to the width of the navigation frame */
right: 0;
bottom: 0;
overflow: auto;
background: #fff;
}
.innertube{
margin: 15px; /* Provides padding for the content */
}
p {
color: #555;
}
nav ul {
list-style-type: none;
margin: 0;
padding: 0;
}
nav ul a {
color: gold;
text-decoration: none;
}
/*IE6 fix*/
* html body{
padding: 0 0 0 230px; /* Set the last value to the width of the navigation frame */
}
* html main{
height: 100%;
width: 100%;
}