89 lines
1.4 KiB
CSS
89 lines
1.4 KiB
CSS
![]() |
body {
|
||
|
font-family: Arial, sans-serif;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
background-color: #f4f4f4;
|
||
|
}
|
||
|
|
||
|
.navbar {
|
||
|
background-color: #2c3e50;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
padding: 0 20px;
|
||
|
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
|
||
|
}
|
||
|
|
||
|
.logo-container {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
margin-right: 30px;
|
||
|
}
|
||
|
|
||
|
.logo {
|
||
|
width: 50px;
|
||
|
height: 50px;
|
||
|
background-color: white;
|
||
|
border-radius: 50%;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
margin-right: 10px;
|
||
|
}
|
||
|
|
||
|
.logo img {
|
||
|
max-width: 40px;
|
||
|
max-height: 40px;
|
||
|
}
|
||
|
|
||
|
.company-name {
|
||
|
color: white;
|
||
|
font-size: 20px;
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
|
||
|
.menu-container {
|
||
|
display: flex;
|
||
|
flex-grow: 1;
|
||
|
}
|
||
|
|
||
|
.menu-container a {
|
||
|
color: white;
|
||
|
text-decoration: none;
|
||
|
padding: 14px 16px;
|
||
|
transition: background-color 0.3s;
|
||
|
}
|
||
|
|
||
|
.dropdown {
|
||
|
position: relative;
|
||
|
}
|
||
|
|
||
|
.dropdown-btn {
|
||
|
cursor: pointer;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
}
|
||
|
|
||
|
.dropdown-content {
|
||
|
display: none;
|
||
|
position: absolute;
|
||
|
background-color: white;
|
||
|
min-width: 200px;
|
||
|
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
|
||
|
z-index: 1000;
|
||
|
top: 100%;
|
||
|
border-radius: 4px;
|
||
|
}
|
||
|
|
||
|
.dropdown:hover .dropdown-content {
|
||
|
display: block;
|
||
|
}
|
||
|
|
||
|
.dropdown-content a {
|
||
|
color: #2c3e50;
|
||
|
padding: 12px 16px;
|
||
|
display: block;
|
||
|
}
|
||
|
|
||
|
.dropdown-content a:hover {
|
||
|
background-color: #f1f1f1;
|
||
|
}
|