-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
40 lines (35 loc) · 749 Bytes
/
styles.css
File metadata and controls
40 lines (35 loc) · 749 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
38
39
40
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
background-color: #f7f7f7;
}
nav {
background-color: #333;
color: #fff;
padding: 10px 20px; /* Reduced padding */
display: flex;
justify-content: space-between;
align-items: center;
}
nav a {
color: #fff;
margin: 0 10px; /* Reduced margin */
text-decoration: none;
padding: 8px 15px; /* Adjusted padding */
border-radius: 5px;
transition: background-color 0.3s;
}
nav a:hover, nav a.active {
background-color: #555;
}
.logo {
font-size: 24px;
font-weight: bold;
display: flex;
align-items: center;
}
.logo img {
height: 40px;
margin-right: 10px;
}