summaryrefslogtreecommitdiffstats
path: root/web/sass-files/sass/partials/_variables.scss
blob: eb1f3eef310100b9a4ebe838b67547c430ad5cc0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
@function em($pixels, $context: 14px) {
	@return #{$pixels/$context}em
}

// Color Variables
$primary-color: #2389D7;
$primary-color--hover: darken(#2389D7, 5%);
$body-bg: #e9e9e9;
$header-bg: #f9f9f9;
$border-gray: 1px solid #ddd;

// Animation
.glyphicon-refresh-animate {
	-animation: spin .7s infinite linear;
	-webkit-animation: spin2 .7s infinite linear;
}