-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
78 lines (67 loc) · 1.19 KB
/
styles.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
body {
background-color: #444444;
color: #e8e8e8;
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
.container {
margin: 0 auto;
text-align: center;
padding: 1.5rem;
}
h1 {
font-size: 3rem;
margin-bottom: 1.5rem;
margin-top: 0px;
}
#game {
display: flex;
flex-wrap: wrap;
flex-direction: column;
margin-bottom: 1.5rem;
}
.game-row {
display: flex;
justify-content: center;
}
#game .pearl {
background: radial-gradient(circle at 35% 20%, #fff, #d9d9d9, #969696);
border-radius: 50%;
height: 3rem;
width: 3rem;
margin: 5px;
box-shadow: 2px 4px 2px rgba(0, 0, 0, 0.7);
}
#message-box {
margin-bottom: 1.5rem;
}
#button {
background-color: #4CAF50;
border: none;
color: white;
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 1rem;
margin-bottom: 1.5rem;
border-radius: 5px;
cursor: pointer;
box-shadow: 5px 3px rgba(0, 0, 0, 0.6);
}
#button:disabled {
background-color: #888;
pointer-events: none;
}
#button:hover {
background-color: #3e8e41;
box-shadow: 5px 3px rgba(0, 0, 0, 0.6) inset;
}
.rules-container {
margin: 0 auto;
width: 38em;
}
.rules {
text-align: left;
}