41 lines
753 B
CSS
41 lines
753 B
CSS
@font-face {
|
|
font-family: "Inter";
|
|
src: url(./Inter-Regular.woff);
|
|
}
|
|
.InputBlank {
|
|
background-color: #f9f9f9;
|
|
border: 0px;
|
|
margin-left: 40px;
|
|
width: 40vw;
|
|
height: 7vh;
|
|
max-width: 720px;
|
|
max-height: 80px;
|
|
padding-left: 2%;
|
|
border-radius: 25px;
|
|
font-size: 25px;
|
|
border: 2px solid rgba(255, 255, 255, 0);
|
|
}
|
|
.InputBlank:focus {
|
|
outline: none;
|
|
border: 2px solid #949494;
|
|
}
|
|
.InputBlank::placeholder {
|
|
font-family: "Inter";
|
|
/* font-size: 20px; */
|
|
color: #bdbdbd;
|
|
}
|
|
button {
|
|
width: 35%;
|
|
height: 80px;
|
|
border-radius: 25px;
|
|
align-items: center;
|
|
border: 0px;
|
|
background: linear-gradient(to right, #df9436, #e2bf92);
|
|
}
|
|
button:hover {
|
|
cursor: pointer;
|
|
}
|
|
button:focus {
|
|
outline: none;
|
|
border: 2px solid #f3bf15;
|
|
} |