-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
67 lines (56 loc) · 1008 Bytes
/
style.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
* {
border: 0;
margin: 0;
padding: 0;
}
body {
display: flex;
flex-direction: column;
align-items: center;
background-color: #344C64;
color: #577B8D;
font-family: "Courier New", sans-serif;
}
.title-card {
margin: 50px 0;
}
.game-menu {
display: flex;
flex-direction: column;
margin-bottom: 50px;
}
.game-menu-colors,
.game-menu-options {
display: flex;
justify-content: center;
}
.game-menu-options {
margin-bottom: 36px;
justify-content: space-evenly;
}
.game-menu-colors button,
.game-menu-options button {
background-color: #57A6A1;
padding: 1em;
border-radius: 10px;
}
.game-menu-colors #random {
margin: 0 64px;
}
.game-menu button:hover {
background-color: #64e2da;
}
.game-board,
.game-area {
width: 640px;
height: 640px;
}
.game-board {
border: 5px solid black;
margin-bottom: 128px;
}
.game-board .game-area {
font-size: 0;
display: flex;
background-color: #FAF9F6;
}