/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
66.1.1 by a11patfr at his
Codeviewer has one working view. Yay
6
.codecontainer {
7
	margin-top: 50px;
20.1.1 by galaxyAbstractor
* Added an simple admin panel to the codeviewer-cmssy stuff
8
	width: 100%;
66.1.1 by a11patfr at his
Codeviewer has one working view. Yay
9
	height: 100%;
10
	margin-left: auto;
11
	margin-right: auto;
12
}
13
14
.codecolumn1, .codecolumn2 {
15
	width: 50%;
16
	float: left;
17
}
18
19
.classcontainer {
20
}
21
22
.codeLanguage {
23
	float: right;
24
}
25
26
.codeFilename {
20.1.1 by galaxyAbstractor
* Added an simple admin panel to the codeviewer-cmssy stuff
27
}
28
29
#doc a {
30
	background-color: #F0F0F0;
31
	border: 1px solid #ccc;
32
	padding: 1px;
33
}
34
35
.editorinfo {
36
	background-color: #0a68ad;
37
	color: white;
38
	font-size: 18px;
39
	padding-top: 5px;
40
	padding-bottom: 5px;
41
	padding-left: 10px;
66.1.1 by a11patfr at his
Codeviewer has one working view. Yay
42
	padding-right: 10px;
43
}
44
45
.textContainer {
46
	height: 350px;
47
	overflow: auto;
48
	padding: 5px;
20.1.1 by galaxyAbstractor
* Added an simple admin panel to the codeviewer-cmssy stuff
49
}
50
51
.ace { 
66.1.1 by a11patfr at his
Codeviewer has one working view. Yay
52
	height: 360px;
53
	width: 100%;
20.1.1 by galaxyAbstractor
* Added an simple admin panel to the codeviewer-cmssy stuff
54
}
55
56
.highlighted {
57
	background-color:  #ff00ff;
58
	opacity: 0.5;
59
	position: absolute;
60
	z-index: 4;
61
}
62
63
.interesting {
64
	background-color:  #ffff00;
65
	opacity: 0.5;
66
	position: absolute;
67
	z-index: 4;
23.1.1 by galaxyAbstractor
Removed codeigniter user guide, shouldn't be in the repo
68
}
69
70
section.group {
71
	width:100%;
72
	top:0px;
73
	height:auto;
74
}
75
section.group div.heading {
76
	font-size:14px;
77
	font-family:verdana;
78
	cursor:pointer;
79
	width:100%;
80
	height:auto;
81
	color:#fff;
82
	background-color:#305EB3;
83
	border-top:#628DDE 1px solid;
84
	border-bottom:#284882 1px solid;
85
}
86
section.group div.heading h1 {
87
	font-size:14px;
88
	font-weight:normal;
89
	padding:6px 0 6px 10px;
90
	max-width:60%;
91
}
92
section.inner.group div.heading {
93
	background-color:#444;
94
	border-top:#666 1px solid;
95
	border-bottom:#333 1px solid;
96
}
97
section.inner.group div.heading h1 {
98
	padding-left:13px;
99
	font-size:12px;
100
}
101
section.group div.content {
102
	width:100%;
103
	height:0px;
104
	min-height:auto;
105
	overflow:hidden;
106
	background-color:#333;
107
	border:solid #f00 0px;
108
	color:#fff;
109
}
110
section.group div.content a {
111
	color:inherit;
112
	font-family:Verdana;
113
	font-size:12px;
114
	text-decoration:none;
115
	display:list-item;
116
	padding:4px 0 4px 20px;
117
}
118
section.group div.content a:hover {
119
	text-decoration:underline;
120
}
121
section.group div.content a:first-child {
122
	padding-top:7px
123
}
124
section.group div.content a:last-child {
125
	padding:4px 0 10px 20px;
126
}
127
section.group div.heading.pink {
128
	background-color:#D9388B;
129
	border-top:#F772B7 1px solid;
130
	border-bottom:#A12263 1px solid;
66.1.1 by a11patfr at his
Codeviewer has one working view. Yay
131
}