2017-10-18 10:20:40 +00:00
|
|
|
// Ionic Variables and Theming. For more info, please see:
|
|
|
|
// http://ionicframework.com/docs/theming/
|
|
|
|
|
|
|
|
// Font path is used to include ionicons,
|
|
|
|
// roboto, and noto sans fonts
|
|
|
|
$font-path: "../assets/fonts";
|
|
|
|
|
|
|
|
|
|
|
|
// The app direction is used to include
|
|
|
|
// rtl styles in your app. For more info, please see:
|
|
|
|
// http://ionicframework.com/docs/theming/rtl-support/
|
|
|
|
$app-direction: ltr;
|
|
|
|
|
|
|
|
|
|
|
|
@import "ionic.globals";
|
|
|
|
|
|
|
|
|
2017-11-24 11:31:09 +00:00
|
|
|
// Color palette
|
|
|
|
$black: #3a3a3a; // Headings, standard text.
|
|
|
|
$gray-darker: #626262; // Text (emphasis-detail), placeholder, background.
|
|
|
|
$gray-dark: #9e9e9e; // Borders (never text).
|
|
|
|
$gray: #dddddd;
|
|
|
|
$gray-light: #eeeeee; // Background.
|
|
|
|
$gray-lighter: #f5f5f5;
|
|
|
|
$white: #ffffff; // Background, reversed text.
|
|
|
|
|
|
|
|
$blue: #0064d2; // Link, background.
|
|
|
|
$blue-light: mix($blue, white, 20%); // Background.
|
|
|
|
$blue-dark: darken($blue, 10%);
|
|
|
|
|
|
|
|
$turquoise: #007982; // Accent.
|
|
|
|
$turquoise-light: mix($turquoise, white, 20%); // Background.
|
|
|
|
$turquoise-dark: darken($turquoise, 10%);
|
|
|
|
|
|
|
|
$green: #5e8100; // Accent.
|
|
|
|
$green-light: mix($green, white, 20%);
|
|
|
|
$green-dark: darken($green, 10%);
|
|
|
|
|
|
|
|
$red: #cb3d4d;
|
|
|
|
$red-light: mix($red, white, 20%);
|
|
|
|
$red-dark: darken($red, 10%);
|
|
|
|
|
|
|
|
$orange: #f98012; // Accent (never text).
|
|
|
|
$orange-light: lighten($orange, 10%);
|
|
|
|
|
|
|
|
$yellow: #fbad1a; // Accent (never text).
|
|
|
|
$yellow-light: mix($yellow, white, 20%);
|
|
|
|
$yellow-dark: mix($yellow, black, 40%);
|
|
|
|
|
|
|
|
|
2017-10-18 10:20:40 +00:00
|
|
|
// Shared Variables
|
|
|
|
// --------------------------------------------------
|
|
|
|
// To customize the look and feel of this app, you can override
|
|
|
|
// the Sass variables found in Ionic's source scss files.
|
|
|
|
// To view all the possible Ionic variables, see:
|
|
|
|
// http://ionicframework.com/docs/theming/overriding-ionic-variables/
|
|
|
|
|
2017-11-24 11:31:09 +00:00
|
|
|
$toolbar-background: $orange;
|
|
|
|
$content-padding: 10px;
|
2017-10-18 10:20:40 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Named Color Variables
|
|
|
|
// --------------------------------------------------
|
|
|
|
// Named colors makes it easy to reuse colors on various components.
|
|
|
|
// It's highly recommended to change the default colors
|
|
|
|
// to match your app's branding. Ionic uses a Sass map of
|
|
|
|
// colors so you can add, rename and remove colors as needed.
|
|
|
|
// The "primary" color is the only required color in the map.
|
|
|
|
|
|
|
|
$colors: (
|
|
|
|
primary: #488aff,
|
|
|
|
secondary: #32db64,
|
|
|
|
danger: #f53d3d,
|
|
|
|
light: #f4f4f4,
|
|
|
|
dark: #222
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
// App iOS Variables
|
|
|
|
// --------------------------------------------------
|
|
|
|
// iOS only Sass variables can go here
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// App Material Design Variables
|
|
|
|
// --------------------------------------------------
|
|
|
|
// Material Design only Sass variables can go here
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// App Windows Variables
|
|
|
|
// --------------------------------------------------
|
|
|
|
// Windows only Sass variables can go here
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// App Theme
|
|
|
|
// --------------------------------------------------
|
|
|
|
// Ionic apps can have different themes applied, which can
|
|
|
|
// then be future customized. This import comes last
|
|
|
|
// so that the above variables are used and Ionic's
|
|
|
|
// default are overridden.
|
|
|
|
|
|
|
|
@import "ionic.theme.default";
|
|
|
|
|
|
|
|
|
|
|
|
// Ionicons
|
|
|
|
// --------------------------------------------------
|
|
|
|
// The premium icon font for Ionic. For more info, please see:
|
|
|
|
// http://ionicframework.com/docs/ionicons/
|
|
|
|
|
|
|
|
@import "ionic.ionicons";
|
|
|
|
|
|
|
|
|
|
|
|
// Fonts
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
|
|
|
@import "roboto";
|
|
|
|
@import "noto-sans";
|
2017-11-21 15:35:41 +00:00
|
|
|
|
|
|
|
|
|
|
|
// Moodle Mobile variables
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
2017-11-27 10:57:52 +00:00
|
|
|
// Variables copied from Ionic 1.
|
|
|
|
$item-icon-accessory-color: #ccc !default;
|
|
|
|
$item-icon-accessory-font-size: 16px !default;
|
|
|
|
|
2017-11-21 15:35:41 +00:00
|
|
|
// Init screen.
|
|
|
|
$mm-color-init-screen: #ff5c00;
|
|
|
|
$mm-color-init-screen-alt: #ff7600;
|
|
|
|
$mm-init-screen-spinner-color: $white;
|
|
|
|
$mm-init-screen-logo-width: 60%;
|
|
|
|
$mm-init-screen-logo-max-width: 300px;
|
2017-11-24 11:31:09 +00:00
|
|
|
|
|
|
|
$mm-fixed-url: false;
|