mirror of
https://github.com/evgen-app/lending-next.git
synced 2025-02-12 00:00:34 +03:00
54 lines
972 B
CSS
54 lines
972 B
CSS
.contacts{
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
scroll-snap-align: start;
|
|
|
|
}
|
|
.questForm{
|
|
padding-top: 5%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap:25px;
|
|
margin-bottom: 10%;
|
|
}
|
|
|
|
.formWrapper{
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
gap:10px;
|
|
}
|
|
.inp{
|
|
font-family: 'Inconsolata', monospace;
|
|
font-size: 18px;
|
|
background: #FFFFFF;
|
|
border: 1px solid #EEEEEE;
|
|
box-sizing: border-box;
|
|
border-radius: 15px;
|
|
outline: none;
|
|
padding:15px;
|
|
width: 100%;
|
|
transition: 0s;
|
|
min-height: 60px;
|
|
}
|
|
|
|
.btn{
|
|
user-select: none;
|
|
|
|
background: #6F39B5;
|
|
border-radius: 10px;
|
|
font-family: 'Montserrat', sans-serif;
|
|
color: #FFFFFF;
|
|
font-size: 18px;
|
|
border:none;
|
|
outline: none;
|
|
padding: 10px;
|
|
cursor: pointer;
|
|
}
|
|
.btn:hover{
|
|
opacity: 0.5;
|
|
} |