-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcolorgame.css
60 lines (59 loc) · 1.02 KB
/
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: black;
margin:0;
font-family: 'Times New Roman', Times, serif;
}
.square {
width: 30%;
background: purple;
padding-bottom: 30%;
float: left;
margin: 1.66%;
border-radius: 20%;
}
#container {
max-width: 600px;
margin: 0 auto;
}
#stripe{
background: whitesmoke;
color: black;
text-align: center;
margin:0;
}
#picked{
font-size:200%;
}
h1{
margin:0;
font-weight: normal;
text-transform: uppercase;
}
#headcontain{
background-color: steelblue;
color: aliceblue;
text-align: center;
margin:0;
font-weight: normal;
}
button{
background: none;
text-transform: uppercase;
border:none;
font-weight: 900;
color:steelblue;
transition: all 0.3s;
outline:none;
}
button:hover{
color:white;
background-color: steelblue;
}
.selectedd{
background-color:steelblue;
color:white;
}
#message{
display:inline-block;
width:20%;
}