-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
58 lines (46 loc) · 767 Bytes
/
style.css
File metadata and controls
58 lines (46 loc) · 767 Bytes
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
html {
/* px means "pixels". The base font size is now 10 pixels high */
font-size: 12px;
/* Replace PLACEHOLDER with the font-family property value you got from Google Fonts */
font-family: 'Open Sans', sans-serif;
}
h1 {
font-size: 50px;
text-align: center;
}
p,
li {
font-size: 16px;
line-height: 2;
letter-spacing: 1px;
}
html {
background-color: #00539f;
}
body {
width: 600px;
margin: 0 auto;
background-color: #ff9500;
padding: 0 20px 20px 20px;
border: 5px solid black;
}
h1 {
margin: 0;
padding: 20px 0;
color: #00539f;
text-shadow: 3px 3px 1px black;
}
img {
display: block;
margin: 0 auto;
max-width: 100%;
}
img {
width: 300px;
}
.quote {
color: red;
}
#mainquote {
border: 2px solid black;
}