-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
89 lines (78 loc) · 1.28 KB
/
style.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
body {
background-color: white;
}
h1 {
font-size: 50px;
font-weight: bold;
color: black;
font-style: italic;
text-align: center;
}
.container {
display: flex;
align-items: center;
justify-content: space-around;
margin-top: 80px;
}
.blue {
width: 70px;
height: 70px;
background-color: blue;
border: 2px solid black;
}
.yellow {
width: 70px;
height: 70px;
background-color: yellow;
border: 2px solid black;
}
.red {
width: 70px;
height: 70px;
background-color: red;
border: 2px solid black;
}
.green {
width: 70px;
height: 70px;
background-color: green;
border: 2px solid black;
}
.orange {
width: 70px;
height: 70px;
background-color: orange;
border: 2px solid black;
}
.purple {
width: 70px;
height: 70px;
background-color: purple;
border: 2px solid black;
}
.pink {
width: 70px;
height: 70px;
background-color: pink;
border: 2px solid black;
}
.cyan {
width: 70px;
height: 70px;
background-color: cyan;
border: 2px solid black;
}
#btn {
display: block;
background-color: darkcyan;
box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
font-weight: bolder;
margin-top: 150px;
margin-left: 750px;
font-size: 40px;
font-size: 20px;
padding: 15px 30px;
border-radius: 5px;
width: 200px;
height: 60px;
}