-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
103 lines (85 loc) · 1.56 KB
/
styles.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
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;800&display=swap');
body {
font-family: 'Orbitron', sans-serif;
background-color: #000;
color: #fff;
margin: 0;
margin-bottom: 75px; /* Adjust this value as needed */
}
body.about-active {
background-color: #111; /* Dark background color for the About page */
}
header {
background-color: #333;
padding: 20px;
}
.header-container {
display: flex;
justify-content: center;
align-items: center;
}
.header-container img {
margin-right: 10px;
}
nav i {
margin-right: 6px;
}
nav ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #444;
}
nav li {
float: left;
}
nav a {
display: block;
color: #fff;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
nav a:hover {
background-color: #555;
}
#hero img {
width: 100%;
border: 4px solid #0096ff;
}
/* Extended content styles */
.extended-content {
padding: 20px;
}
footer {
background-color: #333;
padding: 10px;
position: fixed;
bottom: 0;
width: 100%;
}
/* About content styles */
.content-section {
margin: 20px;
padding: 20px;
background-color: #111; /* Dark background color for the About and Events page */
color: #fff;
}
.content-section h2 {
font-size: 24px;
border-bottom: 2px solid #fff;
padding-bottom: 10px;
margin-bottom: 20px;
}
.content-section p {
font-size: 16px;
margin-bottom: 15px;
}
.content-section a {
color: #0096ff;
text-decoration: none;
}
.content-section a:hover {
text-decoration: underline;
}