-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
105 lines (89 loc) · 1.53 KB
/
style.css
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
99
100
101
102
103
104
105
/* General Styles */
body {
font-family: 'Roboto', sans-serif;
line-height: 1.6;
margin: 0;
background: #f4f4f9;
color: #333;
}
h1, h2, h3 {
color: #004080;
}
img {
max-width: 100%;
height: auto;
display: block;
margin: 10px 0;
}
/* Header */
header {
background: #004080;
color: white;
padding: 20px;
text-align: center;
}
header .logo h1 {
margin: 0;
font-size: 2rem;
}
nav ul {
list-style: none;
padding: 0;
display: flex;
justify-content: center;
gap: 20px;
margin-top: 10px;
}
nav ul li a {
color: white;
text-decoration: none;
font-size: 1rem;
padding: 5px 10px;
border-radius: 5px;
}
nav ul li a:hover {
background: white;
color: #004080;
}
/* Main Content */
main {
padding: 20px;
}
section {
margin-bottom: 40px;
}
section#home {
text-align: center;
background: #e6f2ff;
padding: 20px;
border-radius: 10px;
}
section#activities {
background: #fdfdfd;
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.activity {
margin-bottom: 20px;
}
.activity h3 {
margin-bottom: 10px;
}
/* Footer */
footer {
background: #004080;
color: white;
text-align: center;
padding: 10px 20px;
}
footer p {
margin: 0;
}
/* Responsive Design */
@media (max-width: 768px) {
nav ul {
flex-direction: column;
gap: 10px;
}
}