-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdoc.css
More file actions
62 lines (62 loc) · 899 Bytes
/
doc.css
File metadata and controls
62 lines (62 loc) · 899 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
60
61
62
html, body {
margin: 0;
padding: 0;
height: 100%;
overflow: hidden;
}
#header {
position: fixed;
overflow: hidden;
top: 0;
left: 0;
width: 100%;
height: 24px;
background: #C0C7C7;
z-index: 100;
}
#header h1 {
font-family: 'Lucida Grande', 'Geneva', 'Helvetica', sans-serif;
font-size: 12px;
margin: 0;
padding: 0 0 0 1em;
line-height: 24px;
}
#container {
position: absolute;
top: 24px;
bottom: 0px;
width: 100%;
z-index: 50;
background-color: red;
}
#toc {
position: absolute;
top: 0;
left: 0;
bottom: 0;
width: 250px;
background: green;
margin: 0;
}
#toc #toc-frame {
width: 100%;
height: 100%;
border: none !important;
}
#content {
position: absolute;
height: auto;
width; auto;
top: 0;
left: 250px;
right: 0;
bottom: 0;
border: none;
background: yellow;
margin: 0;
}
#content #content-frame {
width: 100%;
height: 100%;
border: none !important;
}