-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
87 lines (73 loc) · 1018 Bytes
/
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
* {
margin: 0px;
padding: 0px;
}
html {
height: 100%;
box-sizing: border-box;
background-color: blue;
}
header {
padding-top: 25px;
}
.images {
display: flex;
height: 100px;
width: 200px;
padding-top: 10px;
}
img {
padding: 5px;
}
h1 {
text-align: center;
color: #ffffff;
}
h2 {
text-align: center;
padding-bottom: 10px;
}
h3 {
color: #ffffff;
background-color: red;
padding: 25px;
}
p {
text-align: center;
color: #ffffff;
padding-top: 10px;
padding-bottom: 10px;
}
.info {
color: #ffffff;
font-size: 20px;
text-align: justify;
margin: 10px;
}
ul {
display: flex;
justify-content: center;
background-color: yellow;
padding: 10px;
}
li {
padding: 10px;
margin-left: 25px;
margin-right: 25px;
}
.checklist {
display: flex;
justify-content: center;
border-left: 5px red solid;
background-color: red;
padding: 10px;
margin-top: 25px;
}
.steps {
color: #ffffff;
padding-top: 5px;
}
.stats {
color: #ffffff;
font-weight: bolder;
}