-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
85 lines (71 loc) · 1.15 KB
/
Copy pathstyle.css
File metadata and controls
85 lines (71 loc) · 1.15 KB
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
83
84
85
/* General Styles */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
color: #333;
line-height: 1.6;
}
a {
color: #007BFF;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
/* Header */
header {
background-color: #1a1a2e;
color: #fff;
padding: 20px 0;
text-align: center;
}
header h1 {
margin: 0;
font-size: 2.5rem;
}
header p {
font-size: 1.2rem;
}
/* Navigation */
nav {
background-color: #16213e;
}
.nav-links {
list-style: none;
margin: 0;
padding: 10px;
text-align: center;
}
.nav-links li {
display: inline;
margin: 0 15px;
}
.nav-links a {
color: #fff;
font-weight: bold;
}
/* Sections */
.section {
padding: 20px;
text-align: center;
}
.section h2 {
margin-bottom: 10px;
color: #16213e;
}
.assignment-links {
list-style: none;
padding: 0;
}
.assignment-links li {
margin: 10px 0;
}
/* Footer */
footer {
text-align: center;
background-color: #1a1a2e;
color: #fff;
padding: 10px 0;
margin-top: 20px;
}