-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
39 lines (39 loc) · 770 Bytes
/
Copy pathstyles.css
File metadata and controls
39 lines (39 loc) · 770 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
body {
margin: 0;
background-color: black;
height: 100%;
}
.header {
background-color: red;
margin: 0;
text-align: center;
}
h1 {
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
color: greenyellow;
transition: background-color 4s;
}
h1:hover {
background-color: blue;
}
li a {
display: block;
text-decoration: none;
background-color: gray;
padding: 5px;
width: 200px;
text-align: center;
color: greenyellow;
border-radius: 6px;
margin: 2px;
}
li a:hover {
background-color: greenyellow;
color: gray;
}
.content {
margin-left: 8px;
color: greenyellow;
font-size: 20px;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}