thebadspace/public/assets/css/global/forms.css
Ro 735117fcda CSS Reshuffle, Added Page Renderer
Reorganized the CSS structure to there is some seperation between front
facing style and the backend den.

Also add the Render class so auth status is included in every template
rendering event so login status and select member data is available if
needed. will expand if needed.
2023-01-08 14:28:25 -08:00

40 lines
735 B
CSS

input[type="email"],
input[type="password"],
input[type="text"] {
border: 0;
padding: 5px;
border-radius: 5px;
font: 18px var(--base-type);
display: inline-block;
background: var(--white);
color: var(--primary);
}
textarea {
border: 0;
border-radius: 3px;
color: var(--primary);
background: var(--white);
}
button,
input[type="submit"] {
background: var(--highlight);
color: var(--white);
font: 20px var(--base-type);
border-radius: 5px;
position: relative;
cursor: pointer;
border: 0;
transition: all 0.3s linear;
}
select {
font: 20px var(--base-type);
border-radius: 5px;
border: 1px solid var(--primary);
appearance: none;
color: var(--primary);
background: var(--secondary);
}