-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
116 lines (101 loc) · 2.67 KB
/
style.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
/* Allgemeine Einstellungen */
body {
background-color: #282c34; /* Dunkler, neutraler Hintergrund */
color: #e1e1e6; /* Hellgrauer Text für gute Lesbarkeit */
font-family: 'Inter', sans-serif; /* Moderne Schriftart */
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
gap: 20px; /* Einheitlicher Abstand zwischen allen Elementen */
}
/* Überschrift */
h1 {
font-size: 2.4em;
font-weight: 700;
color: #61dafb; /* Helles Blau für Akzente */
text-align: center;
margin: 0; /* Keine zusätzlichen Abstände, da body den Abstand regelt */
}
/* Aufgabe-Text */
#task {
font-size: 1.5em;
font-weight: 500;
padding: 10px;
background-color: #3a3f4b; /* Leicht kontrastierter Bereich */
border-radius: 10px;
text-align: center;
width: 80%;
}
/* Eingabefeld */
#userInput {
width: 80%;
font-size: 1.2em;
padding: 12px;
border: 1px solid #61dafb; /* Subtiler Akzent */
border-radius: 8px;
background-color: #2e323d; /* Neutraler Input-Hintergrund */
color: #e1e1e6;
outline: none;
transition: all 0.3s ease;
}
#userInput:focus {
border-color: #80e8ff; /* Helleres Blau bei Fokus */
box-shadow: 0 0 8px rgba(97, 218, 251, 0.5);
}
/* Button */
input[type="button"] {
font-size: 1em;
font-weight: 600;
padding: 12px 25px;
background-color: #61dafb; /* Helles Blau */
color: #282c34; /* Kontrastfarbe */
border: none;
border-radius: 8px;
cursor: pointer;
transition: background-color 0.3s ease;
}
input[type="button"]:hover {
background-color: #80e8ff; /* Heller bei Hover */
}
input[type="button"]:active {
background-color: #4bb7d6; /* Leicht dunkler bei Klick */
}
/* Zähler-Text */
#correctCount, #wrongCount, #streakCount {
font-size: 1em;
font-weight: 500;
padding: 10px;
background-color: #3a3f4b;
border-radius: 8px;
text-align: center;
width: 80%;
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
margin: 0; /* Entfernt individuelle Abstände */
}
/* Einheitliche Abstände */
body > * {
margin: 0; /* Setzt die Standard-Margins auf 0 */
}
body {
gap: 20px; /* Definiert einheitliche Abstände zwischen allen direkten Kindelementen */
}
/* Responsiveness */
@media (max-width: 600px) {
h1 {
font-size: 2em;
}
#task, #correctCount, #wrongCount, #streakCount {
font-size: 1.2em;
}
#userInput {
font-size: 1em;
}
input[type="button"] {
font-size: 0.9em;
padding: 10px 20px;
}
}