frontend/src/components/Transfer/index.scss
2020-07-01 00:59:19 +02:00

70 lines
1.3 KiB
SCSS

.wrapper {
display: flex;
justify-content: center;
text-align: center;
align-items: center;
}
.transfer {
display: flex;
flex-direction: row;
outline: none;
min-width: 35%;
height: 70%;
padding-top: 40px;
background: #006b96;
box-shadow: 0px 0px 0px 4px #006b96;
border: 4px solid #ffc400;
margin: 0 auto;
border-top-left-radius: 5px;
border-bottom-right-radius: 5px;
text-transform: uppercase;
letter-spacing: 0.3ch;
&__give {
flex-grow: 1;
display: flex;
flex-direction: column;
align-items: center;
}
&__receive {
flex-grow: 1;
}
&__text {
font-family: Lato;
font-size: 30px;
margin-bottom: 10px;
}
&__input {
width: 250px;
height: 25px;
background: #ffc400;
outline: none;
border: 1px solid;
border-radius: 10px;
padding: 10px;
font-size: 24px;
transition-duration: 0.3s;
}
&__input:focus {
-webkit-box-shadow: 0px 0px 34px 1px #ffae00;
-moz-box-shadow: 0px 0px 34px 1px #ffae00;
box-shadow: 0px 0px 34px 1px #ffae00;
}
&__input2 {
width: 250px;
height: 25px;
padding: 10px;
font-size: 24px;
transition-duration: 0.3s;
}
input::placeholder{
color: black;
font-weight: bold;
text-align: center;
}
}