-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
55 lines (45 loc) · 1.24 KB
/
style.css
File metadata and controls
55 lines (45 loc) · 1.24 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
header{
text-align: center;
background-color:#284b63;
padding: 10px;
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
font-size: 25px;
line-height: 10px;
} /* sets the size, background color, and space between lines for my header */
img{
border-radius: 8px;
margin: 18px;
} /* rounds out the corners for my image */
main {
background-color: #edf2f4;
text-align: center;
line-height: 15px;
} /* centers all the paragraphs i have in my main section */
hr{
width:75%;
margin:0 auto;
} /* shortens the line for my horizontal rule */
.footer{
background-color: #c8d2e0;
color: #1E1E1E;
text-align: center;
padding: 12px;
} /* sets the spacing, background color, and size of the bar for my footer */
.wrapper{
width: 300px;
margin:auto;
text-align: justify;
} /* this class is what allows all the lines in my paragraph to have the same width */
ol{
list-style-position: inside;
text-align: left;
}
h2{
text-align: center;
} /* centers all my h2 headings */
.center{
width: 10%;
left: 0;
right: 0;
margin: auto;}
} /* pushes my lists to the center while keeping them left aligned */