generated from LaunchCodeEducation/HTML-Me-Something-Starter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.css
69 lines (69 loc) · 1.24 KB
/
styles.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
body, header, main, article, p, footer, h1, h2, img, a
body {
margin: 8px;
display: block;
background-color: rgb(200, 191, 191);
}
.row {
display: flex;
padding-top: 10px;
padding-right: 10px;
padding-bottom: 10px;
padding-left: 10px;
}
.column {
flex: 33.33%;
padding: 5px;
}
img {
height: 500;
width: auto;
}
#mainHeading {
color: red;
background-color: rgb(188, 188, 188);
font-size: large;
text-align: center;
}
#headerNav li {
color: rgb(148, 112, 45);
font-weight: bold;
font-style: italic;
font-size: larger;
}
a:visited {
text-decoration: none;
color: rgb(148, 112, 45);
}
#testP.funParagraph {
color: green;
}
p {
font-size: large;
padding-top: 0px;
padding-right: 100px;
padding-bottom: 0px;
padding-left: 100px;
margin: 20px;
text-align: center;
}
h2 {
text-align: center;
font-size: xx-large;
color: rgb(148, 112, 45);
background-color: rgb(188, 188, 188);
margin: 0%;
margin-left: 100px;
margin-right: 100px;
}
#headerNav{
text-align: center;
}
footer {
text-align: right;
padding: 3em;
}
footer p {
display: inline-block;
font-size: smaller;
}