Work so far in refactoring front-end

- Mainly getting rid of existing css/js
- No longer linking to stuff like a11y.css
- Creating a FrontPageController to better deal with the home page
This commit is contained in:
Jonny Barnes 2019-07-26 10:40:56 +01:00
parent 30f9b0f557
commit 5ef23376be
135 changed files with 7461 additions and 100 deletions

View file

@ -0,0 +1,19 @@
/* base16-brewer.css */
:root {
--black: #0c0d0e; /* base00*/
--red: #e31a1c; /* base08 */
--green: #31a354; /* base0B */
--yellow: #dca060; /* base0A */
--blue: #3182bd; /* base0D */
--magenta: #756bb1; /* base0E */
--cyan: #80b1d3; /* base0C */
--white: #b7b8b9; /* base05 */
--brblack: #737475; /* base03 */
--brred: #e31a1c; /* base08 */
--brgreen: #31a354; /* base0B */
--bryellow: #dca060; /* base0A */
--brblue: #3182bd; /* base0D */
--brmagenta: #756bb1; /* base0E */
--brcyan: #80b1d3; /* base0C */
--brwhite: #fcfdfe; /* base07 */
}