mirror of
https://koodu.h-i.works/projects/thebadspace
synced 2025-06-25 16:04:37 -05:00
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.
This commit is contained in:
@ -11,9 +11,9 @@ section[role="den-login"] div[role="system-notice"] {
|
||||
color: var(--primary);
|
||||
}
|
||||
|
||||
section[role="den-index"],
|
||||
section[role="loc-index"] {
|
||||
section[role="den-index"] {
|
||||
padding: 20px;
|
||||
color: var(--white);
|
||||
}
|
||||
|
||||
section a {
|
27
public/assets/css/back/locations.css
Normal file
27
public/assets/css/back/locations.css
Normal file
@ -0,0 +1,27 @@
|
||||
section[role="loc-index"] {
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
section[role="loc-index"] img {
|
||||
width: 150px;
|
||||
vertical-align: top;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
section[role="loc-index"] label {
|
||||
color: var(--white);
|
||||
}
|
||||
|
||||
section[role="loc-index"] input {
|
||||
width: 290px;
|
||||
}
|
||||
|
||||
section[role="loc-index"] textarea {
|
||||
width: 290px;
|
||||
padding: 5px;
|
||||
height: 100px;
|
||||
}
|
||||
|
||||
section[role="loc-index"] select {
|
||||
width: 150px;
|
||||
}
|
7
public/assets/css/back/start.css
Normal file
7
public/assets/css/back/start.css
Normal file
@ -0,0 +1,7 @@
|
||||
@import "../global/colors.css";
|
||||
@import "../global/forms.css";
|
||||
@import "../global/typography.css";
|
||||
@import "../global/frame.css";
|
||||
@import "../global/icons.css";
|
||||
@import "locations.css";
|
||||
@import "index.css";
|
@ -1,6 +1,7 @@
|
||||
@import url("colors.css");
|
||||
@import url("forms.css");
|
||||
@import url("typography.css");
|
||||
@import url("frame.css");
|
||||
@import url("index.css");
|
||||
@import url("index-den.css");
|
||||
@import "../global/colors.css";
|
||||
@import "../global/forms.css";
|
||||
@import "../global/typography.css";
|
||||
@import "../global/frame.css";
|
||||
@import "../global/icons.css";
|
||||
|
||||
@import "index.css";
|
||||
|
@ -28,6 +28,10 @@ header > nav {
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
header > nav i {
|
||||
font-size: 1.3em;
|
||||
}
|
||||
|
||||
header > nav > div[role="nav-right"] {
|
||||
text-align: right;
|
||||
}
|
11148
public/assets/css/global/icons.css
Normal file
11148
public/assets/css/global/icons.css
Normal file
File diff suppressed because it is too large
Load Diff
BIN
public/assets/css/global/type/tabler-icons.ttf
Normal file
BIN
public/assets/css/global/type/tabler-icons.ttf
Normal file
Binary file not shown.
BIN
public/assets/css/global/type/tabler-icons.woff
Normal file
BIN
public/assets/css/global/type/tabler-icons.woff
Normal file
Binary file not shown.
Reference in New Issue
Block a user