forked from kunjgit/GameZone
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
52 lines (45 loc) · 812 Bytes
/
style.css
File metadata and controls
52 lines (45 loc) · 812 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
body {
font-family: "Segoe UI", sans-serif;
background: #e6f2ff;
text-align: center;
margin: 0;
padding: 20px;
}
h1 {
margin-bottom: 30px;
color: #005580;
}
.game-container {
display: flex;
justify-content: center;
align-items: center;
gap: 40px;
flex-wrap: wrap;
}
.player {
background-color: #f2f9ff;
padding: 20px;
border-radius: 12px;
box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
min-width: 200px;
}
.dice-container {
text-align: center;
}
.dice-container img {
width: 100px;
margin-bottom: 20px;
}
button {
margin: 5px;
padding: 10px 20px;
border: none;
background-color: #007acc;
color: white;
font-size: 16px;
border-radius: 6px;
cursor: pointer;
}
button:hover {
background-color: #005fa3;
}