-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
75 lines (66 loc) · 1.22 KB
/
Copy pathindex.css
File metadata and controls
75 lines (66 loc) · 1.22 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
body {
margin: 0;
padding: 0;
background: radial-gradient(circle, #2c3e50, #4ca1af);
color: #fff;
font-family: 'Segoe UI', sans-serif;
}
.container {
max-width: 500px;
margin: 60px auto;
text-align: center;
background-color: rgba(255, 255, 255, 0.06);
padding: 30px;
border-radius: 20px;
box-shadow: 0 0 15px rgba(0,0,0,0.3);
}
h1 {
font-size: 2rem;
margin-bottom: 10px;
}
.info {
font-size: 1.1rem;
margin-bottom: 20px;
}
.choices button {
font-size: 2rem;
margin: 10px;
padding: 15px;
background-color: #ffffff;
border: none;
border-radius: 50%;
cursor: pointer;
transition: transform 0.2s ease;
}
.choices button:hover {
transform: scale(1.2);
background-color: #dff0ff;
}
#resultBox {
margin-top: 30px;
padding: 20px;
background-color: rgba(255,255,255,0.1);
border-radius: 12px;
font-size: 18px;
line-height: 1.6;
}
.scores {
margin-top: 25px;
display: flex;
justify-content: space-around;
font-size: 18px;
}
.reset-btn {
margin-top: 25px;
padding: 10px 20px;
font-size: 16px;
background-color: #e74c3c;
color: white;
border: none;
border-radius: 10px;
cursor: pointer;
transition: 0.3s ease;
}
.reset-btn:hover {
background-color: #c0392b;
}