-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
119 lines (98 loc) · 1.64 KB
/
styles.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
/* Grundlegende Stile für den Stundenplan */
body {
font-family: 'Arial', sans-serif;
background-color: #f4f7f9;
margin: 0;
padding: 0;
color: #343a40;
}
h1 {
text-align: center;
color: #343a40;
margin-top: 20px;
}
table {
border-collapse: collapse;
margin: 20px auto;
background-color: #fff;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
width: 90%;
table-layout: fixed;
}
th, td {
padding: 15px;
text-align: center;
border: 1px solid #dee2e6;
font-size: 1.1rem;
width: 16.6%;
}
th {
background-color: #e9ecef;
color: #495057;
font-weight: bold;
}
td {
background-color: #fff;
}
/* Hintergrund für Pausen */
.break {
background-color: #b0bec5;
}
/* Flexbox-Layout für halbe Zellen */
.half-td {
display: flex;
flex-wrap: wrap;
}
.half-left, .half-right {
flex: 1;
padding: 15px;
text-align: center;
min-width: 0;
word-wrap: break-word;
flex-shrink: 1;
}
/* Stile für spezielle Fächer */
.bgc {
background-color: #f5f5dc;
}
.free-time{
background-color:white;
}
.latin {
background-color: #8e1c28;
}
.chemistry {
background-color: #c8e6c9;
}
.english {
background-color: #ffff00;
}
.german {
background-color: #ffcccc;
}
.math {
background-color: #90caf9;
}
.music {
background-color: #d1c4e9;
}
.sports {
background-color: #fff9c4;
}
.religion {
background-color: #f2d2a9;
}
.nawi {
background-color: #a5d6a7;
}
.economics {
background-color: #f0f4c3;
}
.study {
background-color: #e2ffcc;
}
.art {
background-color: #ffccff;
}