-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcolorgame.css
More file actions
68 lines (65 loc) · 951 Bytes
/
Copy pathcolorgame.css
File metadata and controls
68 lines (65 loc) · 951 Bytes
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
body
{
background-color: #1a1a1a;
margin: 0;
}
h1
{
text-align: center;
color: black;
margin: 0;
background-color: #0077b3;
text-transform: uppercase;
font-weight: normal;
line-height: 1.1;
padding:20px 0;
font-family: 'Montserrat', sans-serif;
}
.square
{
background-color: green;
width: 30%;
margin: 1.33%;
padding-bottom: 30%;
float: left;
border-radius: 20%;
transition:all 0.5s;
}
#container
{
max-width: 700px;
margin: 0 auto;
}
div span {
display: inline-block;
width: 300px;
}
.message
{
height: 30px;
background-color: white;
text-align: center;
font-family: 'Montserrat', sans-serif;
letter-spacing: 1px;
}
.selected
{
background-color: #0077b3;
color: white;
}
button
{
border: none;
height: 100%;
letter-spacing: 1px;
transition:all 0.2s;
font-size: 1em;
background-color: white;
font-family: 'Montserrat', sans-serif;
outline: none;
}
button:hover
{
background-color: #0077b3;
color: white;
}