umami/components/layout/NavBar.module.css

58 lines
961 B
CSS
Raw Normal View History

.navbar {
position: relative;
display: flex;
2023-03-22 05:28:36 +01:00
flex-direction: row;
align-items: center;
2023-03-22 05:28:36 +01:00
height: 60px;
background: var(--base75);
2023-03-23 19:46:49 +01:00
border-bottom: 2px solid var(--base300);
2023-03-22 05:28:36 +01:00
padding: 0 20px;
}
2023-03-22 05:28:36 +01:00
.logo {
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
font-size: 16px;
font-weight: 700;
cursor: pointer;
2023-03-22 05:28:36 +01:00
min-width: 0;
}
2023-03-22 05:28:36 +01:00
.links {
display: flex;
flex-direction: row;
2023-03-23 19:46:49 +01:00
gap: 30px;
2023-03-22 05:28:36 +01:00
padding: 0 40px;
flex: 1;
font-weight: 700;
}
2023-03-22 05:28:36 +01:00
.links a {
display: flex;
align-items: center;
gap: 10px;
2023-03-23 19:46:49 +01:00
line-height: 60px;
color: var(--font-color200);
border-bottom: 2px solid transparent;
}
2023-03-22 05:28:36 +01:00
.links a:hover {
2023-03-23 19:46:49 +01:00
color: var(--font-color100);
border-bottom: 2px solid var(--primary400);
}
.links .selected {
color: var(--font-color100);
border-bottom: 2px solid var(--primary400);
}
2023-01-21 02:12:53 +01:00
2023-03-22 05:28:36 +01:00
.actions {
2023-01-21 02:12:53 +01:00
display: flex;
2023-03-22 05:28:36 +01:00
flex-direction: row;
2023-01-21 02:12:53 +01:00
align-items: center;
2023-03-22 05:28:36 +01:00
justify-content: flex-end;
min-width: 0;
}