44 lines
843 B
CSS
44 lines
843 B
CSS
|
.textfield-container {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
justify-content: center;
|
||
|
align-items: start;
|
||
|
gap: 4px;
|
||
|
|
||
|
width: 100%;
|
||
|
}
|
||
|
.textfield-label {
|
||
|
font-family: Space Grotesk;
|
||
|
font-size: 16px;
|
||
|
font-weight: 900;
|
||
|
letter-spacing: 0.1rem;
|
||
|
text-transform: uppercase;
|
||
|
}
|
||
|
.textfield-label-required {
|
||
|
font-family: Space Grotesk;
|
||
|
font-size: 16px;
|
||
|
font-weight: 900;
|
||
|
letter-spacing: 0.1rem;
|
||
|
text-transform: uppercase;
|
||
|
}
|
||
|
.textfield-label-required:after {
|
||
|
color: #e32;
|
||
|
content: '*';
|
||
|
display: inline;
|
||
|
}
|
||
|
.textfield {
|
||
|
height: 50px;
|
||
|
background-color: white;
|
||
|
border: solid 0.5px #d8d8d8;
|
||
|
|
||
|
width: 100%;
|
||
|
text-indent: 10px;
|
||
|
}
|
||
|
.textarea {
|
||
|
height: 150px;
|
||
|
background-color: white;
|
||
|
border: solid 0.5px #d8d8d8;
|
||
|
|
||
|
width: 100%;
|
||
|
padding: 10px;
|
||
|
}
|