2024-10-16 10:18:20 +04:00
|
|
|
@use '../../shared/assets/styles/adaptive' as adaptive;
|
2024-11-06 11:49:14 +04:00
|
|
|
@use '../../shared/assets/styles/fonts' as fonts;
|
|
|
|
@use '../../shared/assets/styles/theme' as theme;
|
|
|
|
|
|
|
|
$adaptive: (
|
|
|
|
|
|
|
|
);
|
2024-10-16 10:18:20 +04:00
|
|
|
|
|
|
|
.navbar {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
2024-11-06 11:49:14 +04:00
|
|
|
background-color: var(--secondary-gray);
|
|
|
|
border-radius: 16px;
|
|
|
|
margin: 16px;
|
2024-10-16 10:18:20 +04:00
|
|
|
|
|
|
|
.container {
|
|
|
|
padding: 15px;
|
|
|
|
@include adaptive.container;
|
|
|
|
|
|
|
|
.logo {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2024-11-06 11:49:14 +04:00
|
|
|
justify-content: flex-start;
|
2024-10-16 10:18:20 +04:00
|
|
|
align-items: end;
|
|
|
|
gap: 8px;
|
2024-11-06 11:49:14 +04:00
|
|
|
color: var(--primary-black);
|
2024-10-16 10:18:20 +04:00
|
|
|
|
|
|
|
.title {
|
2024-12-11 13:10:02 +04:00
|
|
|
cursor: pointer;
|
2024-10-16 10:18:20 +04:00
|
|
|
margin: 0;
|
2024-11-06 11:49:14 +04:00
|
|
|
transition: 0.3s ease;
|
|
|
|
@include fonts.urbanist-font(36px, 600);
|
|
|
|
|
|
|
|
&:hover { @include theme.hoverLink(); }
|
2024-10-16 10:18:20 +04:00
|
|
|
}
|
|
|
|
}
|
2024-11-06 11:49:14 +04:00
|
|
|
|
|
|
|
.version {
|
|
|
|
background-color: var(--primary-white);
|
|
|
|
color: var(--primary-black);
|
|
|
|
border-radius: 25px;
|
|
|
|
padding: 4px 16px;
|
|
|
|
@include fonts.urbanist-font(20px, 500);
|
|
|
|
@include theme.shadows();
|
|
|
|
}
|
2024-10-16 10:18:20 +04:00
|
|
|
}
|
|
|
|
}
|