27 lines
487 B
SCSS
27 lines
487 B
SCSS
body {
|
|
/* Formular Styles */
|
|
input, textarea, select, button {
|
|
width: 100%;
|
|
margin-top: 1rem;
|
|
padding: 0.75rem;
|
|
font-size: 1rem;
|
|
border-radius: 0.5rem;
|
|
color: var(--color-input);
|
|
border: none;
|
|
cursor: pointer;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
input::placeholder,
|
|
textarea::placeholder {
|
|
color: var(--color-placeholder);
|
|
opacity: 1;
|
|
}
|
|
|
|
button:hover {
|
|
cursor: pointer;
|
|
border: none;
|
|
transition: all 0.2s ease-in-out;
|
|
margin-bottom: 15px;
|
|
}
|
|
} |