forked from microsoft/opensource.microsoft.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_settings.scss
More file actions
79 lines (54 loc) · 1.49 KB
/
_settings.scss
File metadata and controls
79 lines (54 loc) · 1.49 KB
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
77
78
79
// ---------------------------------------------------------------------
// SCSS Settings
// ---------------------------------------------------------------------
// ----------------------------------------
// Fonts
// ----------------------------------------
// Font weights: 400 | 700
$sans-serif: 'SegoeUI', sans-serif;
$mono: 'SF-Mono', serif;
$icons: 'FabricMDL2Icons';
// ----------------------------------------
// Font Size/ Line Height
// ----------------------------------------
$main-font: $sans-serif;
$base-font-size: 16px;
$base-line-height: 1.5;
// ----------------------------------------
// Colors
// ----------------------------------------
$black: #11100F;
$white: #ffffff;
$brand: #258EDE;
$brand-dark: darken(#258EDE, 8.4%);
$gray: #11100F;
$gray: #323130;
$error: #FF3333;
// ----------------------------------------
// Breakpoints
// ----------------------------------------
$xlarge: 1280px;
$large: 1012px;
$medium: 768px;
$small: 544px;
@mixin start-at($device-width) {
@media (min-width: $device-width) {
@content;
}
}
@mixin stop-at($device-width) {
@media (max-width: $device-width - 1) {
@content;
}
}
// ----------------------------------------
// Global Variables
// ----------------------------------------
$header-breakpoint: $medium;
$transition-speed: 0.4s;
$transition: $transition-speed ease;
// cuz I no type good
$trans: $transition-speed ease;
$wrapper-percentage: 92%;
$wrapper-width: 1440px;
$wrapper-padding: (100% - $wrapper-percentage) / 2;