735117fcda
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.
40 lines
735 B
CSS
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);
|
|
}
|