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
80
81
82
83
84
85
86
87
88
89
90
91
92
|
body {
margin: 0;
padding: 0;
}
#header {
background-color: #3C3C3C;
height:50px;
width: 100%;
}
#nav div {
display: inline-block;
height: 50px;
}
#nav a {
height: 30px;
padding-top: 15px;
}
.btn-group {
margin-top: -45px;
}
.dropdown-menu {
background-color: #333333;
width: 320px;
}
.dropdown-info {
background-color: #0a68ad;
width: 100%;
color: #fff;
font-size: 25px;
font-weight: bold;
text-align: center;
}
.dropdown-info p{
margin-top: 15px;
}
.dropdown-menu a {
color: white !important; /* important because otherwise bootstrap takes over */
}
#nav .separator {
width: 0px; /* amazing, this seems to work */
height:50px;
border-left: 1px solid #111111;
border-right: 1px solid #555555;
margin-left: 5px;
margin-right: 5px;
}
#doc a {
background-color: #F0F0F0;
border: 1px solid #ccc;
padding: 1px;
}
.editorinfo {
background-color: #0a68ad;
color: white;
font-size: 18px;
padding-top: 5px;
padding-bottom: 5px;
padding-left: 10px;
margin-top: 10px;
}
.ace {
height:500px;
width:100%;
}
.highlighted {
background-color: #ff00ff;
opacity: 0.5;
position: absolute;
z-index: 4;
}
.interesting {
background-color: #ffff00;
opacity: 0.5;
position: absolute;
z-index: 4;
}
|