Projekt

Allgemein

Profil

Fehler #1204 » layout.css

Avishan Sharafi, 03.05.2025 10:15

 
1
/*StudiFinder: dark blue #ff8000*/
2
/*StudiFinder: light blue #73D6C2*/
3

    
4
/*StudiFinder: background-green: #f6fae0*/
5
/*StudiFinder: green #73D6C2*/
6
/*StudiFinder: orange #ff8000*/
7

    
8
/*853 Pixel maximale Breite!!!*/
9

    
10

    
11
#example_exercise {
12
    border: 3px solid #73D6C2;
13
    width: 100%;
14

    
15
    text-align: center;
16
    font-size: 1.5em;
17
    cursor: pointer;
18
    
19
    margin-bottom: 10px;
20
}
21

    
22
.example_exercise_container {
23
    display: inline-block;
24
    width: 60%;
25
}
26

    
27
#score {
28
    display: inline-block;
29
    margin-left: 1em;
30
    border: 3px solid #73D6C2;
31
    width: 30%;
32
    text-align: center;
33
    font-size: 1.5em;
34
    cursor: pointer;
35
    vertical-align: top;
36
}
37

    
38
#position_example_exercise {
39
    border: 3px solid #73D6C2;
40
    border-top: 0px solid #73D6C2;
41
    width: 100%;
42
    height: 0.3em;
43
    margin-bottom: 0.7em;
44
}
45

    
46
#progress_example_exercise {
47
    width: 66%;
48
    height: 100%;
49
    background-color: #ff8000;
50
    overflow: auto;
51
}
52

    
53
.math_content {
54
    cursor: pointer;
55
    display: inline-block;
56
}
57

    
58
#navigation .math_content {
59
    width: 32%;
60
}
61

    
62

    
63
div.singlechoice_aufgabe {
64
  display: inline;
65
}
66
div.singlechoice_aufgabe > input {
67
    margin-right: 6px;
68
}
69
div.multiplechoice_aufgabe > input {
70
    margin-right: 6px;
71
}
72

    
73
.continue_link {
74
    border: 3px solid #73D6C2;
75
    height: auto;
76
    padding: 0.4em;
77
    display: inline-block;
78
    margin-top: 3px;
79
    margin-right: 3px;
80
    cursor: pointer;
81
}
82

    
83
.math_title {
84
    padding: 0.2em;
85
    text-align: center;
86
    width: 11em;
87
    border: 3px solid #73D6C2;
88
    cursor: pointer;
89
    display: inline-block;
90
}
91

    
92

    
93
#navigation .math_title {
94
    margin-left: 10%;
95
}
96

    
97
#navigation .math_practice {
98
    margin-left: 10%;
99
}
100

    
101
.math_practice {
102
    text-align: center;
103
    padding: 0.2em;
104
    width: 10em;
105
    border: 3px solid #73D6C2;
106
    border-top: 0px solid #73D6C2;
107
    cursor: pointer;
108
}
109

    
110

    
111

    
112

    
113

    
114

    
115
.active_button {
116
    background-color:#f6fae0;
117
}
118

    
119
#content_container {
120
    max-height: 100%;
121
    overflow: auto;
122
    max-width: 900px;
123
}
124

    
125
#content_container * img {
126
    max-width: 100%;
127
    height: auto;
128
}
129

    
130
#content {
131
    margin-left: 1em;
132
    width: 92%;
133
    
134
    /*position: relative;
135
    max-height: 80%;
136
    overflow: auto;*/
137
}
138

    
139
#buttons div.grey {
140
    cursor: default !important;
141
}
142

    
143
#buttons div {
144
    display: table-cell;
145
    vertical-align: middle;
146
    #height: 55px;
147
    padding-top: 0;
148
    margin-top: 1.5em;
149
    margin-right:1em;
150
}
151

    
152

    
153
#buttons div span{
154
    width: 34px;
155
    height: 34px;
156
    display: inline-block;
157
    overflow: hidden;
158
}
159

    
160
#button_next {
161
    float: right;
162
    #height: 55px;
163
    padding-top: 0;
164
    width: auto;
165
    display:_inline-block;
166
    margin-right: 2em;
167
    cursor: pointer;
168
}
169

    
170
#button_next span {
171
 margin-left: 1em;
172
}
173

    
174
#button_prev {
175
    float: left;
176
    #height: 55px;
177
    padding-top: 0;
178
    width: auto;
179
    display:_inline-block;
180
    margin-left: 1em;
181
    cursor: pointer;
182
}
183

    
184
#button_prev div span {
185
    margin-right: 1em;
186
}
187

    
188
.grey {
189
    background-color: white;
190
    filter:alpha(opacity=50); /* IE */
191
    opacity: 0.5; /* Safari, Opera */
192
    -moz-opacity:0.50; /* FireFox */
193
    z-index: 20;
194
    height: 100%;
195
    width: 100%;
196
    background-repeat:no-repeat;
197
    background-position:center;
198
}
199
/*
200
#buttons #button_next span{
201
    background-image: url('../images/button_next.png');
202
}
203
#buttons #button_next.grey span{
204
    background-image: url('../images/button_next_grau.png');
205
}
206
#buttons #button_prev span{
207
    background-image: url('../images/button_prev.png');
208
}
209
#buttons #button_prev.grey span{
210
    background-image: url('../images/button_prev_grau.png');
211
}
212
*/
213

    
214

    
215
#overlay{
216
   display:none;
217
   position: fixed;
218
   z-index:19999999;
219
   top: 0px;
220
   left: 0px;
221
   height:100%;
222
   width:100%;   
223
   background-color:#000;
224
   -ms-filter: "Alpha(Opacity=75)"; /* IE 8 */
225
   filter:alpha(opacity=75); /* IE5-7 */
226
   -moz-opacity: 0.75; /* Mozilla */
227
   opacity: 0.75;
228
        
229
}
230

    
231
#loesung{  
232
   display:none;
233
   position:absolute;
234
   top:5%;
235
   left:5%;
236
   padding:5%;
237
   z-index:20000000;
238
   width:80%;
239
   background-color:#fff;
240
}
241

    
242
.aufgaberahmen
243
{
244
        /*border-color:#a3004e;*/
245
        border: 3px solid #73D6C2;
246
        padding:5px;
247
        text-align:left;
248
        margin-right: 70px;
249
}
250

    
251
.inforahmen
252
{
253
        /*border-color:#a3004e;*/
254
    border-color:#73D6C2;
255
        border-style:solid;
256
        border-width: 3px;
257
        padding:5px;
258
        margin-right: 70px;
259
        text-align:left;
260
}
261

    
262
div .rahmen
263
{
264
        /*border-color:#a3004e;*/
265
        border: 3px solid #73D6C2;
266
        padding:5px;
267
        text-align:left;
268
        margin-right: 70px;
269
}
270

    
271
div.rahmenicon {
272
        display: block;
273
        float:right;
274
        margin-left:5px;
275
        text-align: right;
276
        width: 80px;
277
        clear: both;
278
}
279

    
280
div.p {
281
        margin-top: 1em;
282
}
283

    
284
.loesung {
285
    display: none;
286
    margin-top: 0.5em;
287
    background-color: #f2f2f2;
288
    /*height: 0px;
289
    overflow: hidden;*/
290
}
291

    
292
.loesung_verbergen {
293
    margin-top: 0.5em;
294
    margin-bottom: 0.5em;
295
    display: block;
296
}
297

    
298

    
299

    
300

    
301
/* QR-Code bekommt kleinen Abstand nach links und wird klein angezeigt */
302
.qrcode {
303
	margin-left: .2em;
304
	cursor: pointer;
305
	vertical-align: text-bottom;
306
	height: 15px;
307
}
308

    
309
.qrcode canvas {
310
	width: 15px;
311
	vertical-align: text-bottom;
312
}
313

    
314
.qrcode_link img {
315
	width:15;
316
	margin-left:.2em;
317
	vertical-align: text-bottom;
318
}
319

    
320
.versteckt {
321
	display: none;
322
}
323

    
324

    
325

    
326
/*Fortschrittsbalken auf der letzten Seite*/
327
.zusammenfassung {
328
    width: 100px;
329
    border: 3px solid black;
330
    height: 0.5em;
331
    padding:0px;
332
    display: inline-block;
333
    overflow: hidden;
334
}
335
.zusammenfassung_balken {
336
    height: 10em;
337
    display: inline-block;
338
}
339

    
340
.zusammenfassung_balken_gelb {
341
    width: 60px;
342
    background-color: #FFD700;
343
}
344

    
345
.zusammenfassung_balken_gruen {
346
    width: 20px;
347
    background-color: #32CD32;
348
}
349

    
350
.zusammenfassung_balken_rot {
351
    width: 20px;
352
    background-color: #F08080; /*#EE5C42;*/
353
}
354

    
355
.small_text {
356
    font-size: x-small;
357
}
358

    
359
.control_button {
360
    margin-top: 10px;
361
    border: 2px solid #73D6C2;
362
    padding: 2px;
363
    width: 6em;
364
    text-align: center;
365
    cursor: pointer;
366
    display: inline-block;
367
}
368

    
369
.formel {
370
    margin-top: 2px;
371
    margin-bottom: 5px;
372
}
373

    
374
span.control_button_icon {
375
    margin-left: 5px;
376
    display: inline-block;
377
    vertical-align: middle;
378
    height: 20px;
379
    width: 20px;
380
}
381

    
382
span.control_button_icon.right_answer {
383
    background:url(../images/right.png) no-repeat; 
384
}
385

    
386
span.control_button_icon.false {
387
    background:url(../images/false.png) no-repeat; 
388
}
389

    
390

    
391
table {
392
    
393
    border-collapse: collapse;
394
}
395

    
396
table tr td {
397
    padding: 5px;
398
}
399

    
400
div.table_inline_border  table td {
401
    border-right: 1px solid;
402
}
403

    
404
div.table_inline_border table tr:first-child td {
405
    border-bottom: 1px solid;
406
}
407

    
408
div.table_inline_border table tr td:last-child {
409
    border-right: 0;
410
}
411

    
412
video {
413
    margin-left: auto;
414
    margin-right: auto;
415
    display: block;
416
}
417

    
418
input.right_answer, div.right_answer, select.right_answer {
419
    background-color: #73D6C2;
420
/*	Frühlingsgrün: background-color: #f6fae0; */
421
}
422

    
423
input.wrong, div.wrong, select.wrong {
424
    background-color: #ffd573;
425
}
426

    
427
/*Korrigiere Moodle-Abstände*/
428

    
429
li.activity > div {
430
    padding: 0px;
431
}
432

    
433
.mod-indent-outer {
434
    padding-left: 0px !important;
435
}
436

    
437
.contentwithoutlink {
438
    padding-right: 0px !important;
439
}
440

    
441
#mycontent {
442
    margin-top: -1.5em;
443
}
444

    
445
.nav-tabs {
446
    margin-bottom: 0px;
447
}
448

    
449
#content {
450
    margin: 0px;
451
}
452

    
453
.course-content ul.section {
454
    margin: 0em;
455
}
456
/*Ende Moodle-Korrektur*/
457

    
458
div.floatright {
459
	float: right;
460
/*	width: 200px;*/
461
	text-align: center;
462
	margin-left: 10px;
463
	margin-right: 0px;
464
	margin-top: 5px;
465
}
466
div.imagecenter {
467
	text-align: center;
468
	padding-top: 15px;
469
	padding-bottom: 15px;
470
	margin: 0px;
471
}
472
div.imagecenter div.bildtext {
473
	margin-left: 15%;
474
	margin-right: 15%;
475
}
476

    
477
img, iframe, video {
478
    max-width: 100% !important;
479
    height: auto !important;
480
    display: block;
481
    margin: auto;
482
  }
483
  
    (1-1/1)