forked from nighthawkcoders/student
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.css
More file actions
37 lines (33 loc) · 690 Bytes
/
header.css
File metadata and controls
37 lines (33 loc) · 690 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
*{
font-family: 'ADLaM Display';
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Your CSS styles here */
.site-header {
background-color: #333;
color: white;
padding: 30px 0;
font-size:30px;
width: 100%;
text-align: center;
}
.site-header nav ul {
list-style: none;
margin: 0;
padding: 0;
}
.site-header nav li {
display: inline;
margin: 0 10px; /* Adjust the margin as needed */
}
.site-header nav a {
text-decoration: none;
color: white;
font-weight: bold;
transition: color 0.3s;
}
.site-header nav a:hover {
color: #8000f7;
}