-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
77 lines (67 loc) · 1.15 KB
/
Copy pathstyle.css
File metadata and controls
77 lines (67 loc) · 1.15 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
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #1e1e2f;
color: #ffffff;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.game-container {
text-align: center;
background: #2a2a40;
padding: 40px;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
width: 100%;
max-width: 400px;
}
h1 {
margin-bottom: 20px;
font-size: 1.5rem;
}
.scoreboard {
display: flex;
justify-content: space-around;
margin-bottom: 20px;
background: #3f3f5a;
padding: 15px;
border-radius: 10px;
}
.player h2 {
font-size: 1rem;
margin-bottom: 5px;
color: #aeb2d5;
}
.player span {
font-size: 2rem;
font-weight: bold;
}
#result-message {
font-size: 1.2rem;
margin-bottom: 30px;
min-height: 30px;
}
.choices {
display: flex;
justify-content: center;
gap: 20px;
}
.choice {
font-size: 3rem;
background: none;
border: 3px solid #3f3f5a;
border-radius: 50%;
padding: 15px;
cursor: pointer;
transition: all 0.3s ease;
}
.choice:hover {
background: #3f3f5a;
transform: scale(1.1);
}