Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
_definitions.scss 2.11 KiB
/*
*  =================================================
*   
*   CONTAINS SOME SASS VARIABLES
*   you can change these and compile the theme :)
*
*   @author strentini, sergio.trentini@frentix.com,  www.frentix.com
*   @date Nov. 2011
*
*
*   also read themes.README!
*
*  =================================================
*/


/* the base-color and variations (for openolat-theme this is the openolat-blue) */
$basecolor : #025D8C !default;
$basecolor_light : #94bed3 !default;
$basecolor_ultra_light : #f3feff !default;

/* then we need a base-gray and some variations */
$basegray: #555 !default;
$basegray_light: #777 !default;
$basegray_ultra_light: #eee !default;

/* glossy bar colors, default is dark, alternative would be #fefefe,#e3e3e3,#cfcfcf,#f3f3f3  */
$glossColor1 : #5E5E5E !default;
$glossColor2 : #444 !default;
$glossColor3 : #222 !default;
$glossColor4 : #3C3C3C !default;

/* full screen margins. Set to 0% to have have no surrounding border at all */
$fullScreenModalMarginPercents: 2% !default;

/* menu navigation */
$tree_level_margin : 1em !default;
$tree_padding_steps_px : 10px !default;
$tree_padding_opener_px : 6px !default;
/* show or hide tree icons, if yes, width of icons */
$tree_show_icons : true !default; 
$treeicon_width_px : 20px !default;
/* here you can define the two small icons used in trees:  + and - */ 
$tree_opener_spread_px : 6px !default;
$tree_opener_width_px : 8px !default;
$ico_plus : '../openolat/images/toggle-small-expand.png'  !default;
$ico_minus : '../openolat/images/toggle-small.png'  !default;

/* the defaultfont used in : text, main content, etc. */
$defaultfont : Arial, sans-serif !default;
/* the font used in :  navigation (tabs + tree), headings */
$headerfont : Century Gothic, Apple Gothic, sans-serif !default;
/* the overall default font-size */ 
$defaultfontsize : 75% !default;


/* enable business / kmu mode */
$enablebiz : false !default;

/* defines the body-background */
@mixin bodybg(){
	background: #ECECEC url('../openolat/images/sky.png') repeat-x left 88px;
	
	@if $enablebiz == true {
		background: #ECECEC url('../openolat/images/sky.png') repeat-x left 175px;
	}
}