mirror of
https://github.com/evgen-app/lending-next.git
synced 2024-11-22 06:46:33 +03:00
27 lines
497 B
CSS
27 lines
497 B
CSS
|
.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;
|
||
|
}
|