forked from casper-network/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variable.scss
76 lines (65 loc) · 1.14 KB
/
variable.scss
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
// @import "./fonts.scss";
/**
* @tokens Font Families
* @presenter FontFamily
*/
// TODO: resolve font loading in scss
// $font-family-helvetica: helvetica-now-display, arial, sans-serif !default;
/**
* @tokens Font Sizes
* @presenter FontSize
*/
$font-xsmall: 11px;
$font-small: 16px;
$font-normal: 18px;
$font-xnormal: 19px;
$font-large: 21px;
$font-xlarge: 35px;
$font-xxlarge: 44px;
/**
* @tokens Font Weights
* @presenter FontWeight
*/
$font-light: 300;
$font-medium: 500;
$font-bold: 700;
/**
* @tokens Colors
* @presenter Color
*/
$white: #fff;
$silver: #f8f9fa;
$light-grey: lightgrey;
$dark-grey: #7b7b7b;
$grey: #979797;
$light-orange: #f39232;
$orange: #ee741f;
$light-blue: #25aff4;
$blue: #0484c4;
$green: #159957;
$light-black: #192537;
$black: #000;
$mask-black: rgba(0, 0, 0, 0.2);
/**
* @tokens Spacing
* @presenter Color
*/
$tablet: 630px;
$breakpoints: (
xxs: 480px,
sm: 768px,
md: 992px,
lg: 1024px,
xl: 1280px,
xxl: 1600px,
fullhd: 1920px,
);
$z-lvl-0: -1;
$z-lvl-1: 100;
$z-lvl-2: 200;
$z-lvl-3: 300;
$z-lvl-4: 400;
$z-lvl-5: 500;
$z-lvl-6: 600;
$z-lvl-7: 700;
$z-lvl-8: 800;