-
Notifications
You must be signed in to change notification settings - Fork 1
/
game.css
83 lines (76 loc) · 1.54 KB
/
game.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
81
82
83
body{
background-color: #232323;
margin: 0;
}
.square{
width: 30%;
background: #232323;
padding-bottom: 30%;
float: left;
margin: 1.66%;
border-radius: 25px;
transition: background 0.6s;
-webkit-transition: background 0.6s;
-moz-transition: background 0.6s;
}
#container{
max-width: 600px;
margin: 2% auto;
}
#head{
padding: 20px 0;
text-align: center;
color: white;
background: rgb(205, 121, 12);
}
h1{
padding-bottom: 8px;
margin: 0;
font-family: "Edu NSW ACT Foundation", cursive;
font-optical-sizing: auto;
font-weight: 600;
/* font-style: italic; */
font-size: 200%;
text-transform: uppercase;
}
h4{
margin: 0;
font-family: "Edu NSW ACT Foundation", cursive;
font-optical-sizing: auto;
font-weight: 600;
font-style: normal;
font-size: medium;
text-transform: uppercase;
}
.navbar{
background: white;
height: 30px;
text-align: center;
}
span {
margin: auto;
color: black;
text-align: center;
display: inline-block;
width: 20%;
}
button{
border: none;
background: none;
text-transform: uppercase;
padding: 1px;
height: 100%;
letter-spacing: 1px;
font-size: inherit;
transition: all 2.0s;
-webkit-transition: all 0.6s;
-moz-transition: all 0.6s;
}
button:hover{
color: white;
background: rgb(205, 121, 12);
}
.selected{
color: white;
background: rgb(205, 121, 12);
}