-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
57 lines (50 loc) · 1021 Bytes
/
style.css
File metadata and controls
57 lines (50 loc) · 1021 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
56
57
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
body{
background: #f8f8f8;
color: #000;
height: 100px;
width: 100%;
}
h1{
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: 60px;
font-weight: 700;
line-height: 1.2em;
color: blue;
}
h2{
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: 52px;
font-weight: 700;
color: red;
}
h3{
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: 40px;
font-weight: 600;
color: green;
}
h4{
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: 32px;
font-weight: 600;
line-height: 1.2em;
color: purple;
}
h5{
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: 24px;
font-weight: 600;
line-height: 1.2em;
}
h6{
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: 18px;
font-weight: 600;
line-height: 1.2em;
margin-bottom: 20px;
}