-
Notifications
You must be signed in to change notification settings - Fork 121
Expand file tree
/
Copy pathabout.css
More file actions
65 lines (52 loc) · 1.17 KB
/
about.css
File metadata and controls
65 lines (52 loc) · 1.17 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
56
57
58
59
60
61
62
63
64
65
/*- Change the font of the name header to be Luminari and blue*/
h1 {
font-family: Luminari;
color: blue;
}
/*- Remove the bullet points from your unordered list of links.*/
ul {
list-style-type: none;
}
/*- Change the font weight in your ordered list to bold.*/
ol {
font-weight: 700;
}
/*- Center all li items on the page.*/
li {
text-align: center;
}
/*- Give your li's a 1px red boarder with curved corners.*/
li {
border: 1px solid red;
border-radius: 10px;
}
/*- Change the font color of your li's to blue and the background color to a light pink.*/
li {
color: rgb(0,0,255);
background-color: rgb(255, 182, 193);
}
/*- All images should be 200 pixels tall*/
img {
height: 200px;
}
/*- Change all font in the body to sans-serif.*/
body {
font-family: sans-serif;
}
/*- Underline all h3's.*/
h3 {
text-decoration: underline;
}
/*- All p tags should have 20 pixels of padding on the top and the bottom - not on the sides.*/
p {
padding-top: 20px;
padding-bottom: 20px;
}
/*- h1 tags should have a 30px font size*/
h1 {
font-size: 30px;
}
/*- Lists should have 30px of padding on the left.*/
li {
padding-left: 30px;
}