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-summerfruit-dark.css */
:root {
--black: #151515; /* base00*/
--red: #FF0086; /* base08 */
--green: #00C918; /* base0B */
--yellow: #ABA800; /* base0A */
--blue: #3777E6; /* base0D */
--magenta: #AD00A1; /* base0E */
--cyan: #1FAAAA; /* base0C */
--white: #D0D0D0; /* base05 */
--brblack: #505050; /* base03 */
--brred: #FF0086; /* base08 */
--brgreen: #00C918; /* base0B */
--bryellow: #ABA800; /* base0A */
--brblue: #3777E6; /* base0D */
--brmagenta: #AD00A1; /* base0E */
--brcyan: #1FAAAA; /* base0C */
--brwhite: #FFFFFF; /* base07 */
}