-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdesign.css
More file actions
76 lines (67 loc) · 795 Bytes
/
design.css
File metadata and controls
76 lines (67 loc) · 795 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
body
{
margin:0;
padding:0;
border:0;
width:100%;
height:100%;
}
#menubar
{
background-color:black;
height:90px;
width:100%;
}
#menubar img
{
height: 80%;
float: right;
margin: 10px 50px 10px 0px;
}
#menubar #homelink
{
float: left;
margin: 10px 0px 10px 20px;
}
#wrapper
{
width:100%;
height:100%;
position:absolute;
}
#sidebar
{
background-color:blue;
float:left;
width:300px;
overflow:auto;
}
#display-area
{
background-color:green;
margin-left:250px;
overflow:hidden;
}
#bookmenubar
{
height:25px;
clear:both;
float:left;
width:100%;
top:0px;
background-color:blue;
}
#bookarea
{
top: 25px;
background-color:red;
width:100%;
height:100%;
overflow:hidden;
clear:both;
float:left;
}
#content
{
display: none
}