lending-next/components/header/Header.module.css

27 lines
497 B
CSS
Raw Normal View History

2022-03-27 13:32:40 +03:00
.header{
position: fixed;
left: 0;
top:0;
z-index: 0;
background: #fff;
border-radius: 0px 0px 15px 15px;
border: 1px solid #EEEEEE;
width: 100%;
display: flex;
flex-direction: row;
align-items: center;
font-family: 'Inconsolata', monospace;
color: #323232;
font-size: 18px;
gap:25px;
padding: 20px;
z-index: 11;
}
.link{
color: #323232;
text-decoration: none;
}
.link:active{
color: #000;
text-decoration:none;
}