54 lines
1005 B
CSS
54 lines
1005 B
CSS
.textfield-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: start;
|
|
gap: 4px;
|
|
|
|
width: 100%;
|
|
}
|
|
.textfield {
|
|
-moz-box-sizing: border-box;
|
|
-ms-box-sizing: border-box;
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
height: 50px;
|
|
background-color: white;
|
|
border: solid 0.5px #d8d8d8;
|
|
|
|
width: 100%;
|
|
text-indent: 10px;
|
|
|
|
font-family: Poppins;
|
|
font-weight: 200;
|
|
font-size: 14px;
|
|
line-height: 32px;
|
|
|
|
color: #323232;
|
|
}
|
|
.textarea {
|
|
-moz-box-sizing: border-box;
|
|
-ms-box-sizing: border-box;
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
|
|
height: 150px;
|
|
background-color: white;
|
|
border: solid 0.5px #d8d8d8;
|
|
|
|
width: 100%;
|
|
padding: 10px;
|
|
|
|
font-family: Poppins;
|
|
font-weight: 200;
|
|
font-size: 13px;
|
|
line-height: 20px;
|
|
|
|
color: #323232;
|
|
}
|
|
|
|
::placeholder {
|
|
color: #ABAFC7;
|
|
font-family: Poppins;
|
|
font-size: 13px;
|
|
} |