-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
59 lines (51 loc) · 987 Bytes
/
Copy pathstyle.css
File metadata and controls
59 lines (51 loc) · 987 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
body {
font-family: 'Helvetica Neue', Arial, sans-serif;
font-size: 16px;
color: #333333;
margin: 0;
padding: 0;
}
h1 {
background-color: #2c3e50;
text-align: center;
font-family: Georgia, serif;
color: #ffffff;
padding: 20px;
margin-top: 0;
}
nav {
background-color: #34495e;
padding: 10px;
}
main {
background-color: #f8f9fa;
font-size: 1.05rem;
padding: 20px;
min-height: 400px;
}
footer {
background-color: #7f8c8d;
color: #ffffff;
text-align: center;
padding: 15px;
font-size: 0.9rem;
}
li {
display: inline-block;
width: 120px;
margin-right: 10px;
}
p {
line-height: 1.8;
margin-bottom: 15px;
}
nav a {
color: #ffffff;
text-decoration: none;
font-weight: bold;
padding: 5px 10px;
}
nav a:hover {
background-color: #1abc9c;
border-radius: 4px;
}