2023-03-10 12:15:03 +03:00
|
|
|
.auth-header {
|
|
|
|
background-color: #f1f1f1;
|
|
|
|
|
|
|
|
&__logo {
|
|
|
|
padding: 0 0 0 160px;
|
|
|
|
height: 55px;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
font-size: 20px;
|
|
|
|
line-height: 32px;
|
|
|
|
color: #000000;
|
|
|
|
}
|
2023-03-21 21:26:38 +03:00
|
|
|
span {
|
|
|
|
color: #52b709;
|
|
|
|
}
|
2023-03-10 12:15:03 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
&__navigation {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
height: 66px;
|
|
|
|
width: 100%;
|
|
|
|
background: #ffffff;
|
|
|
|
|
|
|
|
.auth-nav {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
|
|
ul {
|
|
|
|
display: flex;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
list-style: none;
|
|
|
|
|
|
|
|
li {
|
|
|
|
margin-right: 25px;
|
|
|
|
|
|
|
|
font-size: 18px;
|
|
|
|
line-height: 32px;
|
|
|
|
|
2023-04-04 19:07:19 +03:00
|
|
|
a {
|
2023-03-10 12:15:03 +03:00
|
|
|
color: #897676;
|
|
|
|
}
|
2023-04-04 19:07:19 +03:00
|
|
|
a:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2023-03-10 12:15:03 +03:00
|
|
|
|
2024-02-05 17:14:30 +03:00
|
|
|
a:focus, a.active {
|
2023-03-10 12:15:03 +03:00
|
|
|
color: #000000;
|
|
|
|
}
|
2023-04-04 19:07:19 +03:00
|
|
|
|
|
|
|
.candidate {
|
2023-05-24 13:49:09 +03:00
|
|
|
color: #1458dd;
|
2023-04-04 19:07:19 +03:00
|
|
|
}
|
2023-03-10 12:15:03 +03:00
|
|
|
}
|
|
|
|
}
|
2023-04-10 18:08:41 +03:00
|
|
|
|
|
|
|
img {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2023-03-10 12:15:03 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-03-10 19:58:47 +03:00
|
|
|
|
2023-03-14 18:07:45 +03:00
|
|
|
@media (max-width: 768px) {
|
|
|
|
.auth-header {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-10 18:08:41 +03:00
|
|
|
@media (max-width: 1375px) {
|
2023-03-10 19:58:47 +03:00
|
|
|
.auth-header {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|