-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
52 lines (44 loc) · 914 Bytes
/
Copy pathstyles.css
File metadata and controls
52 lines (44 loc) · 914 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
body {
font-family: Arial, sans-serif;
margin: 0;
background-color: #f4f4f4;
color: #333;
}
header, footer {
background-color: #004080;
color: #fff;
padding: 1em 2em;
text-align: center;
}
nav {
background-color: #0066cc;
padding: 0.5em;
text-align: center;
}
nav a {
color: white;
margin: 0 15px;
text-decoration: none;
font-weight: bold;
}
nav a:hover {
text-decoration: underline;
}
main {
max-width: 800px;
margin: 2em auto;
background: #fff;
padding: 2em;
border-radius: 10px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
h1 {
color: #004080;
}
ul {
list-style-type: square;
padding-left: 1.5em;
}
footer small {
color: #ccc;
}