-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
80 lines (66 loc) · 1.15 KB
/
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
68
69
70
71
72
73
74
75
76
77
78
79
80
body {
display: flex;
flex-direction: column;
align-items: center;
font-family: 'Courier New', Courier, monospace;
color: rgb(39, 38, 38);
}
.title {
display: flex;
width: 378px;
align-items: center;
}
.title > p {
margin-right: 70px;
}
div.title > .p-box > p {
color: rgb(24, 51, 87);
font-family: 'Courier New', Courier, monospace;
font-size: 22px;
font-weight: 400;
margin: 0px;
}
.p-box {
padding: 4px;
width: 365px;
}
.spacer {
height: 20px;
}
.button-container {
padding: 8px 0px;
}
.score-board{
display: flex;
gap: 25px;
padding: 8px 0px;
}
.new-game-container {
padding: 8px 0px;
}
.game-board {
display: flex;
flex-direction: column;
align-items: center;
padding: 8px 0px;
}
button {
font-size: medium;
background-color: rgb(24, 51, 87);
border: none;
border-radius: 8px;
color: white;
padding: 10px;
}
.button-container button {
font-size: large;
height: 120px;
width: 120px;
}
.new-game-container button {
font-family: 'Courier New', Courier, monospace;
}
button p {
font-size: 40px;
margin: 8px;
}