-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylesheet.css
65 lines (65 loc) · 1.16 KB
/
stylesheet.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
body{
padding: 0;
margin: 0;
background-color: #232323;
font-family: 'Open Sans',sans-serif;
}
#container{
width: 50%;
margin: 0 auto;
margin-top: 16px;
}
.square{
background-color: purple;
width: 30%;
padding-bottom: 30%;
margin: 1.66%;
float: left;
border-radius: 10px;
transition: background 0.6s;
-webkit-transition: background 0.6s;
-moz-transition: background 0.6s;
}
.header{
color: white;
text-align: center;
font-size: 30px;
text-transform: uppercase;
line-height: 70%;
background-color: rgb(33,97,167);
padding-top: 10px;
padding-bottom: 10px;
font-weight: normal;
}
#message{
display: inline-block;
width: 25%;
}
.narrow-bar{
background-color: white;
color: blue;
margin-top: 0;
height: 26px;
text-align: center;
}
button {
border: none;
background: none;
height: 100%;
font-weight: 600;
color: steelblue;
letter-spacing: 1px;
font-size: inherit;
transition: all 0.8s;
-webkit-transition: all 0.8s;
-moz-transition: all 0.8s;
outline: none;
}
button:hover{
color: white;
background-color: rgb(33,97,167);
}
.selected{
color: white;
background-color: rgb(33,97,167);
}