/lenasys/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/lenasys/trunk
20.1.1 by galaxyAbstractor
* Added an simple admin panel to the codeviewer-cmssy stuff
1
body {
2
	margin:  0;
3
	padding: 0;
4
}
5
6
#header {
7
	background-color: #3C3C3C;
8
	height:50px;
9
	width: 100%;
10
}
11
12
13
#nav div {
14
	display: inline-block;
15
	height: 50px;
16
	
17
}
18
19
#nav a {
20
	height: 30px;
21
	padding-top: 15px;
22
}
23
24
.btn-group {
25
	margin-top: -45px;
26
}
27
28
#nav .separator {
29
	width: 0px; /* amazing, this seems to work */
30
	height:50px;
31
	border-left: 1px solid #111111;
32
	border-right: 1px solid #555555;
33
	margin-left: 5px;
34
	margin-right: 5px;
35
}
36
37
#doc a {
38
	background-color: #F0F0F0;
39
	border: 1px solid #ccc;
40
	padding: 1px;
41
}
42
43
.editorinfo {
44
	background-color: #0a68ad;
45
	color: white;
46
	font-size: 18px;
47
	padding-top: 5px;
48
	padding-bottom: 5px;
49
	padding-left: 10px;
50
	margin-top: 10px;
51
}
52
53
.ace { 
54
	height:500px;
55
	width:100%;
56
}
57
58
.highlighted {
59
	background-color:  #ff00ff;
60
	opacity: 0.5;
61
	position: absolute;
62
	z-index: 4;
63
}
64
65
.interesting {
66
	background-color:  #ffff00;
67
	opacity: 0.5;
68
	position: absolute;
69
	z-index: 4;
23.1.1 by galaxyAbstractor
Removed codeigniter user guide, shouldn't be in the repo
70
}
71
72
#dropdown {
73
	width: 500px;
74
	position: absolute;
75
	background-color: #333333;
76
	z-index: 100;
77
	left: 5%;
78
	display: none;
79
}
80
81
#dropdown * {
82
	position: relative;
83
	margin:0px;
84
	padding:0px;
85
}
86
section.group {
87
	width:100%;
88
	top:0px;
89
	height:auto;
90
}
91
section.group div.heading {
92
	font-size:14px;
93
	font-family:verdana;
94
	cursor:pointer;
95
	width:100%;
96
	height:auto;
97
	color:#fff;
98
	background-color:#305EB3;
99
	border-top:#628DDE 1px solid;
100
	border-bottom:#284882 1px solid;
101
}
102
section.group div.heading h1 {
103
	font-size:14px;
104
	font-weight:normal;
105
	padding:6px 0 6px 10px;
106
	max-width:60%;
107
}
108
section.inner.group div.heading {
109
	background-color:#444;
110
	border-top:#666 1px solid;
111
	border-bottom:#333 1px solid;
112
}
113
section.inner.group div.heading h1 {
114
	padding-left:13px;
115
	font-size:12px;
116
}
117
section.group div.content {
118
	width:100%;
119
	height:0px;
120
	min-height:auto;
121
	overflow:hidden;
122
	background-color:#333;
123
	border:solid #f00 0px;
124
	color:#fff;
125
}
126
section.group div.content a {
127
	color:inherit;
128
	font-family:Verdana;
129
	font-size:12px;
130
	text-decoration:none;
131
	display:list-item;
132
	padding:4px 0 4px 20px;
133
}
134
section.group div.content a:hover {
135
	text-decoration:underline;
136
}
137
section.group div.content a:first-child {
138
	padding-top:7px
139
}
140
section.group div.content a:last-child {
141
	padding:4px 0 10px 20px;
142
}
143
section.group div.heading.pink {
144
	background-color:#D9388B;
145
	border-top:#F772B7 1px solid;
146
	border-bottom:#A12263 1px solid;
20.1.1 by galaxyAbstractor
* Added an simple admin panel to the codeviewer-cmssy stuff
147
}