-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcolorGame.css
60 lines (52 loc) · 910 Bytes
/
colorGame.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
body{
background-color: #232323;
}
h1{
text-align: center;
background-color: steelblue;
color: white;
text-transform: uppercase;
font-weight: normal;
padding: 10px 0;
margin: 0
}
.container{
margin: 10px auto;
max-width: 600px;
}
.square{
width: 30%;
background-color: purple;
margin: 1.33%;
height: 170px;
float: left;
border-radius: 15%;
transition: background-color 0.7s;
}
#messageDisplay{
display: inline-block;
width: 300px;
}
.nav{
background-color: white;
text-align: center;
height: 30px;
}
button{
font-weight: bold;
border: 0;
background: none;
height: 100%;
color: steelblue;
outline: 0;
transition: all 0.3s;
text-transform: uppercase;
}
button:hover{
background-color: steelblue;
color: white;
}
.selected{
color: white;
background-color: steelblue;
}