-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
64 lines (52 loc) · 896 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
body
{
margin: 0;
background-color: darkslateblue;
/* Disable text selection - caused bug with click events when selected */
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.container
{
text-align: center;
}
h1
{
color: thistle;
font-size: 4rem;
font-family: 'Courier New', Courier, monospace;
}
/* Game square */
.square
{
width: 16rem;
height: 16rem;
display: inline-block;
margin: 1rem;
border-radius: 1rem;
border: 0.5rem solid black;
}
.yellow
{
background-color: yellow;
}
.blue
{
background-color: blue;
}
.green
{
background-color: green;
}
.red
{
background-color: red;
}
.clicked
{
background-color: blueviolet;
}