-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
83 lines (67 loc) · 1.14 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
82
body {
font-family: Times New Roman;
margin-left: 100px;
margin-right: 200px;
}
header {
text-align: center;
padding: 20px;
font-family: Times New Roman;
font-size: 35px;
}
p, ul, h4, h2, h3 {
font-family: Times New Roman;
font-size: 20px;
margin: 0;
}
h1 {
text-align: center;
border: 3px solid green;
}
h1:hover {
background: linear-gradient(to right, midnightblue, midnightblue 50%, royalblue 50%);
color: white;
}
img {
display: block;
margin-left: auto;
margin-right: auto;
width: 20%;
border-radius: 8px;
}
img:hover{
border: 3px solid green;
box-shadow: 0 0 2px 1px rgba(0, 140, 186, 0.5);
}
a:link, a:visited {
background-color: white;
color: black;
border: 2px solid green;
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
}
a:hover, a:active {
background-color: green;
color: white;
}
ol {
padding: 20px;
}
ul {
padding: 20px;
}
ol li {
background: white;
margin: 5px;
background-color: white;
}
ul li:not(.LINKS) {
margin: 5px;
background-color: white;
}
main {
font-family: verdana;
font-size: 20px;
}