forked from bmuellerhstat/html-basics
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
40 lines (35 loc) · 622 Bytes
/
Copy pathstyle.css
File metadata and controls
40 lines (35 loc) · 622 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
body {
font-family: "Crimson Text", "Georgia";
font-size: 22px;
line-height: 1.5;
}
h1,h2 {
font-family: "Oswald", "Helvetica Neue";
text-align: center;
color: #2884C3;
}
h1 {
font-size: 72px;
}
hr {
border: 0;
height: 1px;
background: #333;
background-image: linear-gradient(to right, #ccc, #333, #ccc);
}
code {
color: #CE234C;
}
.wrapper {
width: 1000px;
margin: 0 auto;
background-color: #e9e9e9;
top: -1px;
padding: 50px;
padding-top: 0px;
position: absolute;
margin-left: auto;
margin-right: auto;
left: 0;
right: 0;
}