-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcolorGame.css
More file actions
67 lines (65 loc) · 1.22 KB
/
colorGame.css
File metadata and controls
67 lines (65 loc) · 1.22 KB
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
body{
background-color: #232323;
}
.square{
background-color:purple ;
width: 30%;
padding-bottom: 30%;
margin: 1.33%;
float: left;
border-radius: 15%;
transition: background-color 0.3s;
}
#container{
max-width: 600px;
margin: 20px auto;
}
h1{
color: white;
text-align: center;
background-color: steelblue;
font-weight: normal;
margin: 0;
font-family: "Book Antiqua";
/*for capitalizing text*/
text-transform: uppercase;
/*for spacing between lines*/
line-height: 1.1;
padding: 10px;
}
button{
border: none;
background: white;
font-weight: normal;
text-transform: uppercase;
height: 100%;
font-weight: 700;
color: steelblue;
font-weight: 700;
font-size: inherit;
letter-spacing: 1px;
font-family: "Book Antiqua";
transition: all 0.3s;
}
button:hover{
color: white;
background-color: steelblue;
}
#msgDisplay{
/*to permanently occupy space even if text is not there*/
display:inline-block; ;
width: 200px;
}
#rgb{
font-size: 200%;
}
#strip{
background-color: white;
height: 30px;
color: black;
text-align: center;
}
.selected{
color: white;
background-color: steelblue;
}