-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles_index.css
More file actions
52 lines (44 loc) · 755 Bytes
/
Copy pathstyles_index.css
File metadata and controls
52 lines (44 loc) · 755 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: 'Fira Code', monospace;
/* Using a coding font for the aesthetic */
margin: 0;
padding: 0;
background-color: #1e1e1e;
color: #e1e1f0;
line-height: 1.6;
}
header {
background-color: #272727;
padding: 20px 0;
text-align: center;
}
header h1 {
margin: 0;
font-size: 2.5rem;
}
nav a {
margin: 0 15px;
text-decoration: none;
color: #e1e1f0;
transition: color 0.3s ease;
}
nav a:hover {
color: #a5a5d5;
}
section {
padding: 40px 20px;
text-align: center;
}
footer {
background-color: #272727;
padding: 10px 0;
text-align: center;
font-size: 0.9rem;
}
a {
color: #a5a5d5;
transition: color 0.3s ease;
}
a:hover {
color: #e1e1f0;
}