-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.scss
More file actions
37 lines (30 loc) · 977 Bytes
/
variables.scss
File metadata and controls
37 lines (30 loc) · 977 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// Every CSS measurement unit is REM-based. 1rem = 16px by default.
// You can calculate REM's by multiplying the normal, px value by 1/16 or 0.0625.
// For example, 8px is 0.5rem.
// The advantage of using REM's is that someone can change their font-size on their browser, and the entire website will respond to that change
//colors
$gray: #757575;
$gray-darker: mix($gray, black, 50%);
$black: #000;
$white: #fff;
$primary: #007fff;
$complementary: #007bff;
$secondary: #d63665;
// feedback colors
$success: #008728;
$info: #4ca5ff;
$warning: #f7ba45;
$danger: #b80000;
$dark: #333;
$background: mix(mix($primary, $white, 5%), #eee, 50%);
$background-light: mix(rgba($primary, 0.05), rgba($dark, 0.05), 50%);
// border radii
$border-radius-small: .375em;
$border-radius-base: .625em;
$border-radius-large: 1em;
// breakpoints
$bp-xl: 65.625rem; // 1050px
$bp-lg: 56.25rem; // 900px
$bp-md: 48rem; // 768px
$bp-sm: 37.55rem; // 600px
$bp-xs: 25rem; // 400px