-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmystyles.css
More file actions
69 lines (59 loc) · 793 Bytes
/
mystyles.css
File metadata and controls
69 lines (59 loc) · 793 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
58
59
60
61
62
63
64
65
66
67
68
69
hr {
width: 100%;
align: center;
size: 100;
background-color: black;
}
h1 {
color:pink;
text-align:center;
font-family: arial;
font-size:50px;
}
body {
background-color:lavender;
}
h2 {
color:plum;
text-align:center;
font-family: arial;
font-size:35px;
}
h3 {
color:lightskyblue;
text-align:center;
font-family: arial;
font-size:25px;
font-style: oblique;
}
h4 {
color:white;
text-align:center;
font-size:20px;
}
h5 {
color:lightsalmon;
font-weight:bold;
font-family: arial;
font-size:20px;
}
h6 {
color:black;
font-family: arial;
font-size: 16px;
}
h7 {
color:orange;
}
p {
color:orange;
font-size:16px;
font-style: oblique;
font-family: verdana;
}
.center {
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
}