2024-12-26 13:14:43 +00:00
|
|
|
.header {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 60px;
|
2024-12-27 12:00:54 +00:00
|
|
|
background-color: #1a1a1a;
|
2024-12-26 13:14:43 +00:00
|
|
|
color: white;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
padding: 0 20px;
|
2024-12-27 12:00:54 +00:00
|
|
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
|
2024-12-26 13:14:43 +00:00
|
|
|
z-index: 1000;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
2024-12-27 12:00:54 +00:00
|
|
|
.header-left span {
|
2024-12-26 13:14:43 +00:00
|
|
|
color: white;
|
2024-12-27 12:00:54 +00:00
|
|
|
font-size: 1.6em;
|
2024-12-26 13:14:43 +00:00
|
|
|
font-weight: bold;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header-right {
|
|
|
|
display: flex;
|
2024-12-27 12:00:54 +00:00
|
|
|
gap: 15px;
|
2024-12-26 13:14:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.header-link {
|
2024-12-27 12:00:54 +00:00
|
|
|
color: #ddd;
|
2024-12-26 13:14:43 +00:00
|
|
|
text-decoration: none;
|
|
|
|
font-size: 1em;
|
|
|
|
transition: color 0.2s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header-link:hover {
|
2024-12-27 12:00:54 +00:00
|
|
|
color: white;
|
2024-12-26 13:14:43 +00:00
|
|
|
}
|