2021-08-09 15:10:12 +03:00
|
|
|
.logout-button {
|
|
|
|
|
2023-01-17 22:14:05 +03:00
|
|
|
position: relative;
|
|
|
|
z-index: 100;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
margin: 0;
|
|
|
|
width: 131px;
|
|
|
|
height: 40px;
|
|
|
|
border-radius: 10px;
|
|
|
|
font-size: 1.6em;
|
|
|
|
letter-spacing: 0.8px;
|
|
|
|
background-color: #6aaf5c;
|
|
|
|
color: #ffffff;
|
|
|
|
border: 3px solid #6aaf5c;
|
|
|
|
font-family: 'Muller', sans-serif;
|
|
|
|
text-align: center;
|
2021-08-09 15:10:12 +03:00
|
|
|
|
2021-11-30 17:00:58 +03:00
|
|
|
&:hover {
|
2023-01-17 22:14:05 +03:00
|
|
|
background-color: #ffffff;
|
|
|
|
color: #6aaf5c;
|
|
|
|
border: 3px solid #6aaf5c;
|
|
|
|
box-shadow: 3px 2px 5px rgba(82, 151, 34, 0.21);
|
|
|
|
transition: 0.3s;
|
2021-11-30 17:00:58 +03:00
|
|
|
}
|
2021-08-19 16:17:06 +03:00
|
|
|
}
|