bzr branch
http://gegoxaren.bato24.eu/bzr/lenasys/trunk
|
90.1.13
by a11emmjo
Changed so that cms-controller loads filetree (before known as examplesController, examplesBody, examplesMenu). |
1 |
/*
|
2 |
* Cms Index-----------------------------------------------------------------------------------------------------------------------
|
|
3 |
*/
|
|
4 |
||
5 |
#cmsContentHeader{ |
|
6 |
width: 849px; |
|
7 |
height: 25px; |
|
8 |
padding-top: 4px; |
|
9 |
padding-bottom: 4px; |
|
10 |
border-bottom: 1px solid #acacac; |
|
11 |
}
|
|
12 |
||
13 |
#cmsContentBody{ |
|
14 |
margin-top:10px; |
|
15 |
}
|
|
16 |
||
17 |
.odd{ |
|
|
90.1.18
by a11emmjo
Fixed even/odd line color on cmsindex. |
18 |
background-color:#fff; |
19 |
}
|
|
|
90.1.17
by a11emmjo
Fixed some css on the cmsindex. |
20 |
|
21 |
.even{ |
|
|
90.1.18
by a11emmjo
Fixed even/odd line color on cmsindex. |
22 |
background-color:#f5f5f5; |
|
90.1.17
by a11emmjo
Fixed some css on the cmsindex. |
23 |
}
|
24 |
||
25 |
.categoryName{ |
|
26 |
display: block; |
|
27 |
width: 657px; |
|
28 |
height: 1.2em; |
|
29 |
padding-left: 1.9em; |
|
30 |
padding-top: 0.2em; |
|
31 |
padding-bottom: 0.1em; |
|
32 |
color: #0a68ad; |
|
33 |
font-size: 1.6em; |
|
34 |
font-weight: bold; |
|
35 |
}
|
|
36 |
||
37 |
/*
|
|
38 |
.categoryIcon{
|
|
39 |
color:#bababa;
|
|
40 |
font-family: "icomoon";
|
|
41 |
font-size:13px;
|
|
42 |
display:inline-block;
|
|
43 |
margin-left:11px;
|
|
44 |
margin-right:5px;
|
|
45 |
cursor:pointer;
|
|
46 |
-webkit-touch-callout: none;
|
|
47 |
-webkit-user-select: none;
|
|
48 |
-khtml-user-select: none;
|
|
49 |
-moz-user-select: none;
|
|
50 |
-ms-user-select: none;
|
|
51 |
user-select: none;
|
|
52 |
}
|
|
53 |
||
54 |
.categoryIcon.expanded{
|
|
55 |
transform:rotate(90deg);
|
|
56 |
-ms-transform:rotate(90deg);
|
|
57 |
-webkit-transform:rotate(90deg);
|
|
58 |
}
|
|
59 |
.categoryIcon.notExpanded{
|
|
60 |
transform:rotate(0deg);
|
|
61 |
-ms-transform:rotate(0deg);
|
|
62 |
-webkit-transform:rotate(0deg);
|
|
63 |
}
|
|
64 |
*/
|
|
65 |
||
66 |
.subCategoryName{ |
|
67 |
display: block; |
|
68 |
width: 638px; |
|
69 |
height: 1.4em; |
|
70 |
padding-left: 3.5em; |
|
71 |
padding-top: 0.3em; |
|
72 |
padding-bottom: 0.0em; |
|
73 |
color: #0a68ad; |
|
74 |
font-size: 1.4em; |
|
75 |
font-weight: bold; |
|
76 |
}
|
|
77 |
||
78 |
.exampleName{ |
|
79 |
display: block; |
|
80 |
width: 619px; |
|
81 |
height: 1.2em; |
|
82 |
padding-left: 5.7em; |
|
83 |
padding-top: 0.5em; |
|
84 |
padding-bottom: 0.3em; |
|
85 |
color: #0a68ad; |
|
86 |
font-size: 1.2em; |
|
87 |
font-weight: bold; |
|
88 |
}
|
|
89 |
||
90 |
.exampleName:before { |
|
91 |
margin: 0 5px 0 0; |
|
92 |
content: url(../img/example_indicator.png); |
|
93 |
}
|
|
94 |
||
95 |
.quizName{ |
|
96 |
display: block; |
|
97 |
width: 619px; |
|
98 |
height: 1.2em; |
|
99 |
padding-left: 5.7em; |
|
100 |
padding-top: 0.5em; |
|
101 |
padding-bottom: 0.3em; |
|
102 |
color: #0a68ad; |
|
103 |
font-size: 1.2em; |
|
104 |
font-weight: bold; |
|
105 |
}
|
|
106 |
||
107 |
.quizName:before { |
|
108 |
margin: 0 5px 0 0; |
|
109 |
content: url(../img/quizz_indicator.png); |
|
110 |
}
|
|
111 |
||
112 |
/*
|
|
|
90.1.13
by a11emmjo
Changed so that cms-controller loads filetree (before known as examplesController, examplesBody, examplesMenu). |
113 |
* Cms Button----------------------------------------------------------------------------------------------------------------------
|
114 |
*/
|
|
115 |
||
116 |
.cmsButton { |
|
117 |
padding: 4px; |
|
118 |
text-align: center; |
|
119 |
font-size: 1.2em; |
|
120 |
border: 1px solid #333; |
|
121 |
border-radius: 4px; |
|
122 |
-webkit-border-radius: 4px; |
|
123 |
-moz-border-radius: 4px; |
|
124 |
}
|
|
125 |
||
126 |
.cmsButton:hover { |
|
127 |
cursor: hand; |
|
128 |
cursor: pointer; |
|
129 |
background-image: linear-gradient(to bottom,#fff,#f5f5f5); |
|
130 |
}
|
|
131 |
||
132 |
.right { |
|
133 |
float: right; |
|
134 |
}
|
|
135 |
||
136 |
.abowHeaderLine { |
|
137 |
position: relative; |
|
138 |
width: 87px; |
|
139 |
margin-left: 4px; |
|
140 |
}
|
|
141 |
||
142 |
.belowHeaderLine { |
|
143 |
position: absolute; |
|
144 |
left: 849px; |
|
145 |
top: 39px; |
|
146 |
width: 87px; |
|
147 |
margin-left: -97px; |
|
148 |
}
|
|
149 |
||
150 |
/*
|
|
151 |
* Course filetree-----------------------------------------------------------------------------------------------------------------
|
|
152 |
*/
|
|
153 |
||
154 |
||
|
90.1.17
by a11emmjo
Fixed some css on the cmsindex. |
155 |
|
|
90.1.13
by a11emmjo
Changed so that cms-controller loads filetree (before known as examplesController, examplesBody, examplesMenu). |
156 |
/*
|
157 |
body {
|
|
158 |
color: #4F5155;
|
|
159 |
height:1500px;
|
|
160 |
}
|
|
161 |
a:link{
|
|
162 |
text-decoration:none;
|
|
163 |
}
|
|
164 |
a:visited{
|
|
165 |
text-decoration:none;
|
|
166 |
}
|
|
167 |
a:hover{
|
|
168 |
color:#f42;
|
|
169 |
text-decoration:underline;
|
|
170 |
}
|
|
171 |
||
172 |
@-moz-keyframes pulse{
|
|
173 |
0%{ box-shadow:0 0 1px #888; z-index:3000;}
|
|
174 |
50%{ box-shadow:0 0 100px #888; z-index:3000;}
|
|
175 |
100%{ box-shadow:0 0 1px #888; z-index:3000;}
|
|
176 |
}
|
|
177 |
||
178 |
@-webkit-keyframes pulse{
|
|
179 |
0%{ box-shadow:0 0 1px #888; z-index:3000;}
|
|
180 |
50%{ box-shadow:0 0 100px #888; z-index:3000;}
|
|
181 |
100%{ box-shadow:0 0 1px #888; z-index:3000;}
|
|
182 |
}
|
|
183 |
||
184 |
@-moz-keyframes pulseMini{
|
|
185 |
0%{ box-shadow:0 0 1px #aaa; z-index:3000;}
|
|
186 |
50%{ box-shadow:0 0 30px #aaa; z-index:3000;}
|
|
187 |
100%{ box-shadow:0 0 1px #aaa; z-index:3000;}
|
|
188 |
}
|
|
189 |
||
190 |
@-webkit-keyframes pulseMini{
|
|
191 |
0%{ box-shadow:0 0 1px #aaa; z-index:3000;}
|
|
192 |
50%{ box-shadow:0 0 30px #aaa; z-index:3000;}
|
|
193 |
100%{ box-shadow:0 0 1px #aaa; z-index:3000;}
|
|
194 |
}
|
|
195 |
||
196 |
h3.subCategoryName{
|
|
197 |
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
198 |
font-size:13px;
|
|
199 |
font-weight:bold;
|
|
200 |
color:#438BD5;
|
|
201 |
padding-left:22px;
|
|
202 |
margin:0;
|
|
203 |
line-height:100%;
|
|
204 |
}
|
|
205 |
||
206 |
a.exampleName{
|
|
207 |
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
208 |
color:#438BD5;
|
|
209 |
font-size:12px;
|
|
210 |
display:block;
|
|
211 |
margin:0;
|
|
212 |
padding-top:3px;
|
|
213 |
}
|
|
214 |
||
215 |
||
216 |
.categoryBorder
|
|
217 |
{
|
|
218 |
float:left;
|
|
219 |
margin-left:18px;
|
|
220 |
width:3px;
|
|
221 |
height:25px;
|
|
222 |
background-image: url(../img/borderbackground.png);
|
|
223 |
display:inline-block;
|
|
224 |
}
|
|
225 |
||
226 |
.exampleBorder
|
|
227 |
{
|
|
228 |
float:left;
|
|
229 |
margin-left:17px;
|
|
230 |
margin-right:5px;
|
|
231 |
width:4px;
|
|
232 |
height:22px;
|
|
233 |
background-image: url(../img/borderbackground.png);
|
|
234 |
}
|
|
235 |
||
236 |
||
237 |
||
238 |
.exampleIcon{
|
|
239 |
float:left;
|
|
240 |
height:9px;
|
|
241 |
padding-top:10px;
|
|
242 |
width:9px;
|
|
243 |
background-image: url(../img/example_indicator.png);
|
|
244 |
background-position:center;
|
|
245 |
background-repeat:no-repeat;
|
|
246 |
display:inline-block;
|
|
247 |
margin-right:5px;
|
|
248 |
margin-left:10px;
|
|
249 |
}
|
|
250 |
||
251 |
.categoryMoveUp{
|
|
252 |
float:right;
|
|
253 |
position:relative;
|
|
254 |
height: 20px;
|
|
255 |
width:20px;
|
|
256 |
||
257 |
top:-24px;
|
|
258 |
margin-right:25%;
|
|
259 |
margin-left:2px;
|
|
260 |
font-family: icomoon;
|
|
261 |
background-color:silver;
|
|
262 |
||
263 |
|
|
264 |
|
|
265 |
transform:rotate(90deg);
|
|
266 |
-ms-transform:rotate(90deg);
|
|
|
90.1.17
by a11emmjo
Fixed some css on the cmsindex. |
267 |
-webkit-transform:rotate(90deg);
|
268 |
text-align:center;
|
|
|
90.1.13
by a11emmjo
Changed so that cms-controller loads filetree (before known as examplesController, examplesBody, examplesMenu). |
269 |
cursor:pointer;
|
270 |
-webkit-touch-callout: none;
|
|
271 |
-webkit-user-select: none;
|
|
272 |
-khtml-user-select: none;
|
|
273 |
-moz-user-select: none;
|
|
274 |
-ms-user-select: none;
|
|
275 |
user-select: none;
|
|
276 |
}
|
|
277 |
.categoryMoveDown{
|
|
278 |
float:right;
|
|
279 |
position:relative;
|
|
280 |
height: 20px;
|
|
281 |
width:20px;
|
|
282 |
||
283 |
top:-24px;
|
|
284 |
margin-left:2px;
|
|
285 |
font-family: icomoon;
|
|
286 |
background-color:silver;
|
|
287 |
|
|
288 |
transform:rotate(-90deg);
|
|
289 |
-ms-transform:rotate(-90deg);
|
|
|
90.1.17
by a11emmjo
Fixed some css on the cmsindex. |
290 |
-webkit-transform:rotate(-90deg);
|
291 |
text-align:center;
|
|
|
90.1.13
by a11emmjo
Changed so that cms-controller loads filetree (before known as examplesController, examplesBody, examplesMenu). |
292 |
cursor:pointer;
|
293 |
-webkit-touch-callout: none;
|
|
294 |
-webkit-user-select: none;
|
|
295 |
-khtml-user-select: none;
|
|
296 |
-moz-user-select: none;
|
|
297 |
-ms-user-select: none;
|
|
298 |
user-select: none;
|
|
299 |
}
|
|
300 |
||
301 |
.categoryPulse{
|
|
302 |
-moz-animation: pulse 1.5s 1;
|
|
303 |
-webkit-animation: pulse 1.5s 1;
|
|
304 |
}
|
|
305 |
||
306 |
||
307 |
.categoryPulseMini{
|
|
308 |
-moz-animation: pulseMini 1.5s 1;
|
|
309 |
-webkit-animation: pulseMini 1.5s 1;
|
|
310 |
}*/
|
|
311 |