Skip to content

Commit 847f5b8

Browse files
committed
make the website menu css default stylesheet and leave the basic CSS no-frame available as basic-styles
1 parent 0f5d58d commit 847f5b8

File tree

2 files changed

+361
-61
lines changed

2 files changed

+361
-61
lines changed

Tools/basic-styles.css

Lines changed: 90 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
.content-bar {
2+
float: left;
3+
position: fixed;
4+
top: 0px;
5+
left: 0px;
6+
width: 20%;
7+
height: 100%;
8+
border-right: 1px solid grey;
9+
}
10+
11+
.content-bar-top {
12+
position: absolute;
13+
top: 0px;
14+
left: 0px;
15+
height: 30%;
16+
width: 100%;
17+
overflow: auto;
18+
border-bottom: 1px solid grey;
19+
}
20+
21+
.content-bar-top-body {
22+
position: absolute;
23+
top: 0px;
24+
left: 0px;
25+
padding-left: 10px;
26+
padding-top: 10px;
27+
}
28+
29+
.content-bar-bottom {
30+
position: absolute;
31+
bottom: 0px;
32+
left: 0px;
33+
height:70%;
34+
width: 100%;
35+
overflow: auto;
36+
}
37+
38+
.content-bar-bottom-body {
39+
position: absolute;
40+
top: 0px;
41+
left: 0px;
42+
padding-left: 10px;
43+
padding-top: 10px;
44+
}
45+
46+
47+
.content-pane {
48+
position: fixed;
49+
top: 0px;
50+
right: 0px;
51+
width: 80%;
52+
height: 100%;
53+
overflow-y: auto;
54+
}
55+
56+
.content-pane-body {
57+
position: absolute;
58+
top: 0px;
59+
left: 0px;
60+
padding-left: 10px;
61+
}
62+
63+
hr.section-separator {
64+
width:50%;
65+
margin-left:0;
66+
text-align:left;
67+
}
68+
69+
70+
hr.method-separator {
71+
width:25%;
72+
margin-left:0;
73+
text-align:left;
74+
}
75+
76+
h3.content-bar-index-section-header {
77+
font-family: sans-serif;
78+
}
79+
80+
h3.index-section-header {
81+
font-family: sans-serif;
82+
}
83+
84+
p {
85+
font-family: Serif;
86+
}
87+
88+
.desc {
89+
font-family: Serif;
90+
}

0 commit comments

Comments
 (0)