/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
* {
2
	margin: 0;
3
	padding: 0;
4
}
5
6
body {
7
	background-color: #fff;
8
9
}
10
11
#header {
12
	background-color: #3C3C3C;
13
	height:50px;
14
	width: 100%;
15
}
16
17
#nav div {
18
	height: 50px;
19
}
20
21
#nav .separator {
22
	width: 0px; /* amazing, this seems to work */
23
	height:50px;
24
	border-left: 1px solid #111111;
25
	border-right: 1px solid #555555;
26
	margin-left: 5px;
27
	margin-right: 5px;
28
	float:left;
29
}
30
31
#logo {
32
	color: white;
33
	font-size: 16px;
34
	font-weight: bold;
35
	float: left;
36
	line-height: 50px;
37
}
38
#mainpage {
39
	margin-top: 20px;
40
}
41
42
#menu {
43
	background-color: #F5F5F5;
44
	border: 1px solid #E3E3E3;
45
}
46
50.1.1 by galaxyAbstractor
Started implementing categories and a menu
47
20.1.1 by galaxyAbstractor
* Added an simple admin panel to the codeviewer-cmssy stuff
48
thead {
49
	background-color: #0A68AD;
50
	color: white;
51
}
52
53
#menuheader {
54
	background-color: #9DB400;
55
	padding: 10px;
56
	color: white;
57
	font-size: 16px;
58
	font-weight: bold;
59
}
60
61
#menu ul {
62
	list-style-type: none;
63
	margin-left: 0;
64
65
}
66
67
#menu ul li {
68
	border-top: 1px solid #EAEAEA;
69
	padding-left: 10px;
70
	padding-top: 5px;
71
	padding-bottom: 5px;
72
}
73
50.1.1 by galaxyAbstractor
Started implementing categories and a menu
74
#menu ul li ul li {
75
	padding-left: 10px;
76
}
77
20.1.1 by galaxyAbstractor
* Added an simple admin panel to the codeviewer-cmssy stuff
78
#menu ul .active {
79
	border-right: 5px solid #333333;
80
}
81
82
#dropbox:before {
83
	display: block;
84
	content:'';
85
	height:4px;
86
	width:100%;
87
	background:url('../img/blue_line.jpg');
88
	position: absolute;
89
	top:0;
90
	left:0;
91
	box-shadow:0 2px 2px rgba(0,0,0,0.4);
92
}
93
94
#dropbox {
95
	background:url('../img/background_tile_3.jpg');
96
	
97
	border-radius:3px;
98
	position: relative;
99
	
23.1.1 by galaxyAbstractor
Removed codeigniter user guide, shouldn't be in the repo
100
	min-height: 100px;
20.1.1 by galaxyAbstractor
* Added an simple admin panel to the codeviewer-cmssy stuff
101
	overflow: hidden;
102
	padding-bottom: 40px;
103
104
	
105
	box-shadow:0 0 4px rgba(0,0,0,0.3) inset,0 -3px 2px rgba(0,0,0,0.1);
106
}
107
108
109
#dropbox .message {
110
	font-size: 11px;
111
    text-align: center;
23.1.1 by galaxyAbstractor
Removed codeigniter user guide, shouldn't be in the repo
112
    padding-top:65px;
20.1.1 by galaxyAbstractor
* Added an simple admin panel to the codeviewer-cmssy stuff
113
    display: block;
114
}
115
116
#dropbox .message i {
117
	color:#ccc;
118
	font-size:10px;
119
}
120
121
#dropbox:before {
122
	border-radius:3px 3px 0 0;
123
}
124
125
#dropbox .progressHolder{
126
	position: absolute;
127
	background-color:#252f38;
128
	height:12px;
129
	width:100%;
130
	left:0;
131
	bottom: 0;
132
133
	box-shadow:0 0 2px #000;
134
}
135
136
#dropbox .progress{
137
	background-color:#2586d0;
138
	position: absolute;
139
	height:100%;
140
	left:0;
141
	width:0;
142
143
	box-shadow: 0 0 1px rgba(255, 255, 255, 0.4) inset;
144
145
	-moz-transition:0.25s;
146
	-webkit-transition:0.25s;
147
	-o-transition:0.25s;
148
	transition:0.25s;
149
}
150
151
#dropbox .preview.done .progress{
152
	width:100% !important;
23.1.1 by galaxyAbstractor
Removed codeigniter user guide, shouldn't be in the repo
153
}
154
155
.editorinfo {
156
	background-color: #0a68ad;
157
	color: white;
158
	font-size: 18px;
159
	padding-top: 5px;
160
	padding-bottom: 5px;
161
	padding-left: 10px;
162
	margin-top: 10px;
163
}
164
165
.ace { 
166
	height:500px;
167
	width:100%;
168
}
169
170
.highlighted {
171
	background-color:  #ff00ff;
172
	opacity: 0.5;
173
	position: absolute;
174
	z-index: 4;
175
}
176
177
.interesting {
178
	background-color:  #ffff00;
179
	opacity: 0.5;
180
	position: absolute;
181
	z-index: 4;
23.1.2 by galaxyAbstractor
Fixed database stuff, added files to database.
182
}
183
184
.file {
185
	background-color: #ccc;
50.1.1 by galaxyAbstractor
Started implementing categories and a menu
186
}
187