frontend/сomponents/header/header.module.css
2022-10-23 03:11:10 +03:00

35 lines
701 B
CSS

.header{
position: fixed;
top:0px;
left: 0px;
width: 100%;
height: 60px;
background-color: #fafaff;
border-radius: 0px 0px 10px 10px;
box-shadow: 0px 5px 10px rgba(88, 88, 146, 0.18);
padding: 15px;
display: flex;
align-items: center;
justify-content: center;
gap: 50px;
font-size: 18px;
}
.link a{
transition: 0.3s;
font-weight: 500;
text-decoration: none;
color: rgb(249, 90, 90) !important
}
.link a:active{
transition: 0.3s;
text-decoration: none;
color: rgb(255, 47, 47) !important
}
.link a:hover{
transition: 0.3s;
font-weight: 400;
text-decoration: none;
color: rgb(255, 47, 47) !important
}