-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.scss
More file actions
executable file
·89 lines (81 loc) · 1.69 KB
/
main.scss
File metadata and controls
executable file
·89 lines (81 loc) · 1.69 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
80
81
82
83
84
85
86
87
88
89
@charset "utf-8";
// Variables
// Fonts
$main-font: 'Source Sans Pro', sans-serif;
$secondary-font: 'Source Sans Pro', sans-serif;
// Breakpoints
$bp: "screen and (min-width: 800px)";
$nbp: "screen and (min-width: 1150px)";
// Line heights, widths and margins
$base-line-height: 1.45;
$single-line: 1.45em;
$line-and-a-half: ($single-line * 1.5);
$double-line: ($single-line * 2);
$treble-line: ($single-line * 3);
$quadruple-line: ($single-line * 4);
$three-quarter-line: ($single-line * 0.75);
$half-line: ($single-line / 2);
$quarter-line: ($single-line / 4);
$eighth-line: ($single-line / 8);
$base-font-size: 106.75%;
$widescreen-font-size: 125%;
$min-wrapper-width: 1100px;
$max-width: 1600px;
$wrapper-width: 75%;
$inner-wrapper-width: 66.66666%;
$inner-inner-wrapper-width: 50%;
// Type scale (see http://type-scale.com/ minor third)
$size-1: 0.579em;
$size-2: 0.694em;
$size-3: 0.833em;
$size-4: 1em;
$size-5: 1.2em;
$size-6: 1.44em;
$size-7: 1.728em;
$size-8: 2.074em;
// Colours
$black: #000;
$dark: #444;
$light: #FFF;
$highlight: #265A8E;
$grey: #AAA;
$lgrey: #F1F1F1;
$midgrey: #DFDFDF;
$link: #0282F9;
$visited: #46A4FC;
$active: #02CAF7;
$hover: #02CAF7;
$code: #FCDF02;
$background: #F7F7F7;
$corporate: #3B1B53;
$secondary-blue: #0E82C0;
// Import partials
@import
"sass/base",
"sass/entry",
"sass/search",
"sass/nav",
"sass/utils",
"sass/topbar",
"sass/grid",
"sass/layout",
"sass/hero",
"sass/vbox",
"sass/iconography",
"sass/form",
"sass/button",
"sass/typography",
"sass/pure",
"sass/nib",
"sass/slot",
"sass/contentband",
"sass/reversed",
"sass/wp",
"sass/panel",
"sass/microsites",
"sass/table",
"sass/background",
"sass/wp-navigation",
"sass/wp-caption",
"sass/wp-nav-breadcrumbs",
"sass/subnav"