-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.css
More file actions
61 lines (51 loc) · 938 Bytes
/
style.css
File metadata and controls
61 lines (51 loc) · 938 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
h1{
color: antiquewhite;
font-size: 2.5rem;
margin: auto;
text-align: center;
margin-top: 150px;
}
#message{
color: bisque;
font-size: 1.5rem;
text-align: center;
margin-top: 20px;
}
.cont2{
margin: 70px auto;
position: absolute;
left: 650px;
display: inline-block;
}
.color{
margin: 10px 5px;
width: 7rem;
height: 7rem;
border-radius: 10px;
box-shadow: 0 7px #666;
}
/* for red box */
#red{
background-color: red;
border-color: red;
}
/* for blue box */
#blue{
background-color: blue;
border-color: blue;
}
/* for yellow box */
#yellow{
background-color: yellow;
border-color: yellow;
}
/* for green box */
#green{
background-color: green;
border-color: green;
}
/* for button */
button:active {
box-shadow: 0 5px black;
transform: translateY(4px);
}