-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
73 lines (64 loc) · 1.23 KB
/
Copy pathstyle.css
File metadata and controls
73 lines (64 loc) · 1.23 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
background-color: #841E06;
color: #DAB580;
text-align: center;
font-family: Arial, Helvetica, sans-serif;
}
h1{
margin: 20px 0;
}
/* Center the board */
.gamecontainer{
height: 70vh;
display: flex;
justify-content: center;
align-items: center;
}
/* GAME BOX */
.buttoncontainer{
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: repeat(3, 1fr);
gap: 1.5vmin;
height: 60vmin;
width: 60vmin;
background-color: #9E5C32;
padding: 2vmin;
border-radius: 12px;
}
/* Buttons */
.b{
font-size: 6vmin;
font-weight: bold;
background-color: #DAB580;
color: #841E06;
border: none;
border-radius: 8px;
cursor: pointer;
}
/* Hover effect */
.b:hover{
background-color: #C4945B;
}
#RESET{
border-radius: 1.5rem;
COLOR:#841E06;
text-align: center;
background-color:goldenrod;
}
#NEW{
border-radius: 1.5rem;
COLOR:#841E06;
text-align: center;
background-color:goldenrod;
}
#message{
COLOR:#c43f21;
text-align: center;
background-color:goldenrod;
}