-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
97 lines (83 loc) · 1.59 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
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #6ab5b9;
/* Hintergrundfarbe des Body in Türkisblau */
}
.header {
background-image: url('images/th.jpg');
/* Bild als Hintergrund für den Header */
background-size: cover;
color: white;
padding: 60px 0;
text-align: center;
}
h1 {
font-size: 36px;
}
.footer {
background-color: #2e86c1;
/* Blauer Hintergrund für den Footer */
color: white;
text-align: center;
padding: 20px;
}
.week {
background-color: white;
padding: 20px;
margin: 20px auto;
max-width: 800px;
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
/* Leichter Schatten um die Woche-Container */
}
.week h3 {
color: #2e86c1;
/* Blaue Überschrift für die Woche */
border-bottom: 2px solid #2e86c1;
/* Unterstrich in Blau */
padding-bottom: 10px;
}
table {
width: 100%;
border-collapse: collapse;
margin-bottom: 20px;
}
table,
th,
td {
border: 1px solid #ddd;
/* Hellgraue Trennlinien für die Tabelle */
}
th,
td {
padding: 10px;
text-align: left;
}
th {
background-color: #2e86c1;
/* Blauer Hintergrund für Tabellenkopf */
color: white;
}
ul {
list-style-type: none;
padding: 0;
}
li {
margin-bottom: 10px;
}
h4 {
color: #2e86c1;
/* Blaue Überschrift für die Einkaufsliste */
}
.footer {
background-color: #2e86c1;
/* Blauer Hintergrund für den Footer */
color: white;
text-align: center;
padding: 20px;
position: fixed;
left: 0;
bottom: 0;
width: 100%;
}