/*
  holo - modular css
  by OpenBooks

  Version 1.0.0.20170425
  Major: Changes that break things
  Minor: Adding features without breaking anything
  Patch: Bugfixes

  MIT License
  Copyright (c) 2017 OpenBooks
  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

/*--------------------------------*/

/*
  Module Configuration
  Comment out modules to disable them.
*/

/* Layout      */ @import url("holoSystem/holoLayout.css");
/* Text        */ @import url("holoSystem/holoText.css");
/* Navigation  */ @import url("holoSystem/holoNavigation.css");
/* Boxes       */ @import url("holoSystem/holoBoxes.css");
/* Forms       */ @import url("holoSystem/holoForms.css");
/* Code Blocks */ @import url("holoSystem/holoCode.css");

/* User Modules */

/* System Fonts */ @import url("holoUser/mxSystemFonts.css");
/* Google Fonts */ /*@import url("holoUser/mxGoogleFonts.css");*/

/*
  Module Codes

  holoModule     Official, included module
  xholoModule    Experimental, unsupported module
  mxModule       Created by Marin Exley, author of holo
  pdModule       Created for polestardesign.com

  It is recommended you create a personal tag for your own modules as well.
*/


/*--------------------------------*/

/*
  Variables

  Variables are an experimental CSS features that should not be used in production, however they are useful in development. Use your editors find/replace function to replace them before publishing. (Recommended)
  Compatibility:
    Chrome: 49+
    Safari: 9.1+
    Opera 36+
    Firefox 31+
    No support for Edge/IE
*/

:root {

  /* colors */
  --bg-color: #FFF;
  --main-text-color: #444;
  --primary-color: #009AFF;
  --primary-darker: #0073BF; /* Used for active buttons and links. */

  /* fonts (used by holoText and holoForms) */
  --main-font-family: var(--mxSystemFonts); /* Using variables from user modules */
  --header-font-family: var(--main-font-family);
  --header-font-weight: 300;

  /* holoLayout */
  --page-width: 750px;

  /* holoText */
  --text-scale: 100%;

}

/*--------------------------------*/

/*
  User CSS
  Polestar Design recommends that any modifications be made here instead of modifying core holo files, which can break things with updates.
  User module variables can also be placed here.
*/
