-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
79 lines (78 loc) · 1.51 KB
/
style.css
File metadata and controls
79 lines (78 loc) · 1.51 KB
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
pre, body{
font-family: Arial,sans-serif;
font-size: 14px;
line-height:21px;
}
html {
margin:0;
padding:0;
color:#000;
}
.categorized{
text-decoration: underline;
background-color: aqua;
font-weight: bold;
}
.sectionHeader{
font-weight:bold;
font-size: larger;
}
#wrapper {
width:960px;
margin:0 auto;
}
#leftToolMenu{
width: 220px;
border: 1px;
background-color: #a7a09a;
float:left;
min-height:450px;
height:auto !important;
padding:10px 10px 0px 10px;
position:fixed;
}
#doc{
background-color: #eee;
border-color:black;
border-width: 1px;
border-style: outset;
min-height:550px;
height:auto !important;
float:left;
width:500px;
position:relative;
margin:40px 0px 10px 220px;
padding:10px 0px 0px 10px;
text-align:justify;
}
#docHeader{
background-color: #eee;
border-color:black;
border-width: 1px;
border-style: outset;
float:left;
width:500px;
position:fixed;
margin:0px 0px 0px 220px;
padding:10px 0px 0px 10px;
}
#annotationCategories{
padding:0px 0px 0px 0px;
margin:0px 0px 0px 10px;
list-style:none;
color:#686868;
font-weight:bold;
letter-spacing:-1px;
}
#annotationCategories li{
padding:0px 0px 0px 10px;
margin:4px 0px ;
background-color: powderblue;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
cursor: pointer;
}
#annotationCategories li:hover{
background-color: darkorange;
}