-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
81 lines (74 loc) · 1.26 KB
/
style.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
70
71
72
73
74
75
76
77
78
79
80
81
body
{
background-color: yellow;
font-family: "Helvectics", sans-serif;
}
h1 {
color:gray;
font-family: 'Times New Roman', serif;
}
nav ul {
background-color: rgb(226, 12, 12);
border: solid 2px seashell;
padding: 15px;
border-radius: 10px;
}
nav ul li {
list-style-type: none;
display: inline;
margin-right: 5px;
margin-left: 10px;
color: PapayaWhip;
}
nav ul li a {
text-decoration: none;
color: black;
}
.blue{
background-color: blue;
color: azure;
padding: 8px;
}
.red {
background-color:red;
color: azure;
padding: 8px;
}
.green{
background-color: green;
color: azure;
padding: 8px;
}
mark{
background-color: rgb(215, 147, 19);
}
img{
margin: 20px;
border-radius: 30px;
border: 2px solid rgb(255, 255, 255);
}
img:hover {
border: 2px dashed navy;
}
article{
border-radius: 10px;
background-color: rgb(127, 255, 253);
padding: 20px;
}
.sectionSpacing {
padding: 10px;
margin-top: 20px;
}
h1 {
font-family: Arial, Helvetica, sans-serif;
color: white;
}
p {
color: red;
}
h2 {
color: slateblue;
}
.solid {
border-top: 2px solid #fff ;
}