-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
55 lines (50 loc) · 925 Bytes
/
Copy pathstyles.css
File metadata and controls
55 lines (50 loc) · 925 Bytes
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
/* Allgemeine Stile für die Seite */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background: #f0f0f0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
color: #333;
}
/* Container für die Weltuhren */
.container {
text-align: center;
background: white;
border-radius: 10px;
padding: 20px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
max-height: 90%;
overflow-y: auto;
width: 80%;
}
h1 {
font-size: 2rem;
margin-bottom: 20px;
color: #0078d7;
}
/* Einzelne Uhren */
.clock {
margin: 10px 0;
padding: 10px;
border: 1px solid #ddd;
border-radius: 5px;
background: #f9f9f9;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
display: flex;
justify-content: space-between;
align-items: center;
}
.clock h2 {
margin: 0;
font-size: 1.2rem;
color: #555;
}
.clock .time {
font-size: 1.5rem;
font-weight: bold;
color: #000;
}