-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
95 lines (82 loc) · 1.66 KB
/
Copy pathstyle.css
File metadata and controls
95 lines (82 loc) · 1.66 KB
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
/* --- Global Reset & Typography --- */
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
background-color: #f3f4f6; /* Light gray background */
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
color: #333;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.app-container {
background-color: #ffffff;
width: 90%;
max-width: 600px;
padding: 40px;
border-radius: 12px;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
text-align: center;
}
h1 {
font-size: 2rem;
margin-bottom: 20px;
color: #1f2937;
}
h2 {
font-size: 1.5rem;
margin-bottom: 20px;
color: #374151;
}
p {
font-size: 1.1rem;
margin-bottom: 20px;
}
.btn-grid {
display: grid;
gap: 12px; /* Adds space between buttons */
margin: 20px 0;
}
.btn {
background-color: #ffffff;
color: #3b82f6;
border: 2px solid #3b82f6;
border-radius: 8px;
padding: 12px 20px;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
transition: all 0.2s ease-in-out;
width: 100%;
}
.btn:hover {
background-color: #3b82f6;
color: #ffffff;
}
#next-btn, #restart-btn, #start-btn {
background-color: #10b981; /* Green */
color: white;
border: 2px solid #10b981;
margin-top: 10px;
}
#next-btn:hover, #restart-btn:hover, #start-btn:hover {
background-color: #059669;
border-color: #059669;
}
.hide {
display: none !important;
}
.correct {
background-color: #10b981; /* Green */
color: white;
border-color: #10b981;
}
.wrong {
background-color: #ef4444; /* Red */
color: white;
border-color: #ef4444;
}