-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
99 lines (86 loc) · 1.62 KB
/
Copy pathstyles.css
File metadata and controls
99 lines (86 loc) · 1.62 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
86
87
88
89
90
91
92
93
94
95
96
97
98
/* Base Layout */
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #fff4cc; /* Light yellow inspired by SDG Goal 2 (Zero Hunger) */
color: #1a1a1a;
margin: 0;
padding: 0;
line-height: 1.6;
}
/* Header */
header {
background-color: #d62828; /* Deep red inspired by SDG Goal 10 (Reduced Inequalities) */
color: white;
padding: 1rem 2rem;
text-align: center;
border-bottom: 4px solid #9d0208;
}
header h1 {
margin: 0;
font-size: 2rem;
font-weight: bold;
}
/* Navigation */
nav {
background-color: #9d0208;
display: flex;
justify-content: center;
padding: 0.5rem 0;
}
nav a {
color: white;
text-decoration: none;
padding: 0.75rem 1.5rem;
font-weight: 500;
transition: background-color 0.3s ease;
}
nav a:hover {
background-color: #6a040f;
}
/* Main Content */
main {
max-width: 960px;
margin: 2rem auto;
padding: 1rem;
background-color: white;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
border-radius: 6px;
}
/* Headings */
h2, h3, h4, h5, h6 {
color: #d62828; /* Red headers */
margin-top: 1.5rem;
}
/* Buttons */
button,
.button {
background-color: #d62828;
color: white;
padding: 0.6rem 1.2rem;
border: none;
border-radius: 4px;
cursor: pointer;
font-weight: bold;
transition: background-color 0.3s ease;
}
button:hover,
.button:hover {
background-color: #9d0208;
}
/* Footer */
footer {
background-color: #f9e79f;
text-align: center;
padding: 1rem;
font-size: 0.9rem;
color: #555;
border-top: 1px solid #ccc;
}
/* Links */
a {
color: #d62828;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}