Website/styles/Textbox.module.css

32 lines
548 B
CSS
Raw Normal View History

2021-12-21 22:42:34 +00:00
@keyframes pop {
0% {
scale: 0;
}
60% {
scale: 1.2;
}
100% {
scale: 1;
}
}
.Textbox {
background-color: #17171f;
border-radius: 10px;
font-family: 'Manrope';
color: white;
padding: 20px;
border: none;
scale: 1;
font-size: 12pt;
animation-name: pop;
animation-duration: 1s;
animation-fill-mode: forwards;
animation-delay: 1s;
animation-timing-function: ease;
scale: 0;
}
.Textbox::placeholder {
color: #8b8ba8;
font-family: 'Manrope';
}