9912c92695
-Updated JQuery to v3.5.1 -Updated Bootstrap to v4.5.3 -Updated DataTables to v1.10.22 -Updated FontAwesome to v5.15.1 -Updated Chart.js to v2.9.4 -Updated flag-icon-css to v3.5.0 -All scripts now load minified -Removed unused/unnecessary scripts (moment.js and some jqPlot plugins) -Scripts that are not used on every page are now only loaded on pages where they are needed (jqPlot, Chart.js and flag-icon-css) -Default website language to English -Enable unicode support -Removed unused images -public directory cleanup (images directory renamed to img, javascript directory renamed to js, stylesheets directory renamed to css, themes directory moved from /public/themes to /public/css/themes, removed vendor directory and moved the important contents to the new img, css and js directories) -Reward.pug rewritten to support Chart.js v2.9.4 -Updated README Features section
55 lines
1.4 KiB
SCSS
55 lines
1.4 KiB
SCSS
// United 4.5.3
|
|
// Bootswatch
|
|
|
|
//
|
|
// Color system
|
|
//
|
|
|
|
$white: #fff !default;
|
|
$gray-100: #f8f9fa !default;
|
|
$gray-200: #e9ecef !default;
|
|
$gray-300: #dee2e6 !default;
|
|
$gray-400: #ced4da !default;
|
|
$gray-500: #aea79f !default;
|
|
$gray-600: #868e96 !default;
|
|
$gray-700: #495057 !default;
|
|
$gray-800: #333 !default;
|
|
$gray-900: #212529 !default;
|
|
$black: #000 !default;
|
|
|
|
$blue: #007bff !default;
|
|
$indigo: #6610f2 !default;
|
|
$purple: #772953 !default;
|
|
$pink: #e83e8c !default;
|
|
$red: #df382c !default;
|
|
$orange: #e95420 !default;
|
|
$yellow: #efb73e !default;
|
|
$green: #38b44a !default;
|
|
$teal: #20c997 !default;
|
|
$cyan: #17a2b8 !default;
|
|
|
|
$primary: $orange !default;
|
|
$secondary: $gray-500 !default;
|
|
$success: $green !default;
|
|
$info: $cyan !default;
|
|
$warning: $yellow !default;
|
|
$danger: $red !default;
|
|
$light: $gray-200 !default;
|
|
$dark: $purple !default;
|
|
|
|
$yiq-contrasted-threshold: 200 !default;
|
|
|
|
// Body
|
|
|
|
$body-color: $gray-800 !default;
|
|
|
|
// Fonts
|
|
|
|
// stylelint-disable-next-line value-keyword-case
|
|
$font-family-sans-serif: Ubuntu, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !default;
|
|
|
|
// Tables
|
|
|
|
$table-dark-bg: $dark !default;
|
|
$table-dark-border-color: darken($dark, 5%) !default;
|