Reaperxxxx commited on
Commit
86ea821
·
verified ·
1 Parent(s): 7f721a8

Upload 3 files

Browse files
assets/sass/base/_page.scss ADDED
@@ -0,0 +1,59 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ///
2
+ /// Solid State by HTML5 UP
3
+ /// html5up.net | @ajlkn
4
+ /// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
5
+ ///
6
+
7
+ /* Basic */
8
+
9
+ // MSIE: Required for IEMobile.
10
+ @-ms-viewport {
11
+ width: device-width;
12
+ }
13
+
14
+ // MSIE: Prevents scrollbar from overlapping content.
15
+ body {
16
+ -ms-overflow-style: scrollbar;
17
+ }
18
+
19
+ // Ensures page width is always >=320px.
20
+ @include breakpoint('<=xsmall') {
21
+ html, body {
22
+ min-width: 320px;
23
+ }
24
+ }
25
+
26
+ // Set box model to border-box.
27
+ // Based on css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice
28
+ html {
29
+ box-sizing: border-box;
30
+ }
31
+
32
+ *, *:before, *:after {
33
+ box-sizing: inherit;
34
+ }
35
+
36
+ body {
37
+ background-color: _palette(bg);
38
+
39
+ background-image: linear-gradient(to top, transparentize(_palette(bg), 0.2), transparentize(_palette(bg), 0.2)),
40
+ url('../../images/bg.jpg');
41
+
42
+ background-size: auto,
43
+ cover;
44
+
45
+ background-attachment: fixed,
46
+ fixed;
47
+
48
+ background-position: center,
49
+ center;
50
+
51
+ // Stops initial animations until page loads.
52
+ &.is-preload {
53
+ *, *:before, *:after {
54
+ @include vendor('animation', 'none !important');
55
+ @include vendor('transition', 'none !important');
56
+ }
57
+ }
58
+
59
+ }
assets/sass/base/_reset.scss ADDED
@@ -0,0 +1,76 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ///
2
+ /// Solid State by HTML5 UP
3
+ /// html5up.net | @ajlkn
4
+ /// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
5
+ ///
6
+
7
+ // Reset.
8
+ // Based on meyerweb.com/eric/tools/css/reset (v2.0 | 20110126 | License: public domain)
9
+
10
+ html, body, div, span, applet, object,
11
+ iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
12
+ pre, a, abbr, acronym, address, big, cite,
13
+ code, del, dfn, em, img, ins, kbd, q, s, samp,
14
+ small, strike, strong, sub, sup, tt, var, b,
15
+ u, i, center, dl, dt, dd, ol, ul, li, fieldset,
16
+ form, label, legend, table, caption, tbody,
17
+ tfoot, thead, tr, th, td, article, aside,
18
+ canvas, details, embed, figure, figcaption,
19
+ footer, header, hgroup, menu, nav, output, ruby,
20
+ section, summary, time, mark, audio, video {
21
+ margin: 0;
22
+ padding: 0;
23
+ border: 0;
24
+ font-size: 100%;
25
+ font: inherit;
26
+ vertical-align: baseline;
27
+ }
28
+
29
+ article, aside, details, figcaption, figure,
30
+ footer, header, hgroup, menu, nav, section {
31
+ display: block;
32
+ }
33
+
34
+ body {
35
+ line-height: 1;
36
+ }
37
+
38
+ ol, ul {
39
+ list-style:none;
40
+ }
41
+
42
+ blockquote, q {
43
+ quotes: none;
44
+
45
+ &:before,
46
+ &:after {
47
+ content: '';
48
+ content: none;
49
+ }
50
+ }
51
+
52
+ table {
53
+ border-collapse: collapse;
54
+ border-spacing: 0;
55
+ }
56
+
57
+ body {
58
+ -webkit-text-size-adjust: none;
59
+ }
60
+
61
+ mark {
62
+ background-color: transparent;
63
+ color: inherit;
64
+ }
65
+
66
+ input::-moz-focus-inner {
67
+ border: 0;
68
+ padding: 0;
69
+ }
70
+
71
+ input, select, textarea {
72
+ -moz-appearance: none;
73
+ -webkit-appearance: none;
74
+ -ms-appearance: none;
75
+ appearance: none;
76
+ }
assets/sass/base/_typography.scss ADDED
@@ -0,0 +1,219 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ///
2
+ /// Solid State by HTML5 UP
3
+ /// html5up.net | @ajlkn
4
+ /// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
5
+ ///
6
+
7
+ /* Type */
8
+
9
+ body, input, select, textarea {
10
+ color: _palette(fg);
11
+ font-family: _font(family);
12
+ font-size: 16.5pt;
13
+ font-weight: _font(weight);
14
+ line-height: 1.65;
15
+
16
+ @include breakpoint('<=xlarge') {
17
+ font-size: 13pt;
18
+ }
19
+
20
+ @include breakpoint('<=large') {
21
+ font-size: 12pt;
22
+ }
23
+
24
+ @include breakpoint('<=medium') {
25
+ font-size: 12pt;
26
+ }
27
+
28
+ @include breakpoint('<=small') {
29
+ font-size: 12pt;
30
+ }
31
+
32
+ @include breakpoint('<=xsmall') {
33
+ font-size: 12pt;
34
+ }
35
+ }
36
+
37
+ a {
38
+ @include vendor('transition', 'color #{_duration(transition)} ease-in-out, border-bottom-color #{_duration(transition)} ease-in-out');
39
+ border-bottom: dotted 1px _palette(fg-light);
40
+ color: _palette(fg-bold);
41
+ text-decoration: none;
42
+
43
+ &:hover {
44
+ border-bottom-color: transparent;
45
+ color: _palette(fg-bold) !important;
46
+ }
47
+
48
+ &.special:not(.button) {
49
+ @include icon(false, solid);
50
+ border-bottom: 0;
51
+ display: block;
52
+ font-family: _font(family-heading);
53
+ font-size: 0.8em;
54
+ font-weight: _font(weight-heading-bold);
55
+ letter-spacing: _font(kern-heading);
56
+ margin: 0 0 _size(element-margin) 0;
57
+ text-transform: uppercase;
58
+
59
+ &:before {
60
+ @include vendor('transition', 'background-color #{_duration(transition)} ease-in-out');
61
+ border-radius: 100%;
62
+ border: solid 2px _palette(border);
63
+ content: '\f105';
64
+ display: inline-block;
65
+ font-size: 1.25em;
66
+ height: 2em;
67
+ line-height: 1.75em;
68
+ margin-right: 0.85em;
69
+ text-align: center;
70
+ text-indent: 0.15em;
71
+ vertical-align: middle;
72
+ width: 2em;
73
+ }
74
+
75
+ &:hover {
76
+ &:before {
77
+ background-color: _palette(border-bg);
78
+ }
79
+ }
80
+
81
+ &:active {
82
+ &:before {
83
+ background-color: _palette(border2-bg);
84
+ }
85
+ }
86
+ }
87
+ }
88
+
89
+ strong, b {
90
+ color: _palette(fg-bold);
91
+ font-weight: _font(weight-bold);
92
+ }
93
+
94
+ em, i {
95
+ font-style: italic;
96
+ }
97
+
98
+ p {
99
+ margin: 0 0 _size(element-margin) 0;
100
+ }
101
+
102
+ h1, h2, h3, h4, h5, h6 {
103
+ color: _palette(fg-bold);
104
+ font-family: _font(family-heading);
105
+ font-weight: _font(weight-heading-bold);
106
+ letter-spacing: _font(kern-heading);
107
+ margin: 0 0 (_size(element-margin) * 0.5) 0;
108
+ text-transform: uppercase;
109
+
110
+ a {
111
+ color: inherit;
112
+ text-decoration: none;
113
+ border-bottom: 0;
114
+ }
115
+
116
+ span {
117
+ font-weight: _font(weight-heading);
118
+ }
119
+
120
+ &.major {
121
+ padding-bottom: 1em;
122
+ border-bottom: solid 2px _palette(border);
123
+ }
124
+ }
125
+
126
+ h2 {
127
+ font-size: 1.2em;
128
+ }
129
+
130
+ h3 {
131
+ font-size: 0.9em;
132
+ }
133
+
134
+ h4 {
135
+ font-size: 0.7em;
136
+ }
137
+
138
+ h5 {
139
+ font-size: 0.7em;
140
+ }
141
+
142
+ h6 {
143
+ font-size: 0.7em;
144
+ }
145
+
146
+ @include breakpoint('<=small') {
147
+ h2 {
148
+ font-size: 1em;
149
+ }
150
+
151
+ h3 {
152
+ font-size: 0.8em
153
+ }
154
+ }
155
+
156
+ sub {
157
+ font-size: 0.8em;
158
+ position: relative;
159
+ top: 0.5em;
160
+ }
161
+
162
+ sup {
163
+ font-size: 0.8em;
164
+ position: relative;
165
+ top: -0.5em;
166
+ }
167
+
168
+ blockquote {
169
+ border-left: solid 4px _palette(border);
170
+ font-style: italic;
171
+ margin: 0 0 _size(element-margin) 0;
172
+ padding: (_size(element-margin) / 4) 0 (_size(element-margin) / 4) _size(element-margin);
173
+ }
174
+
175
+ code {
176
+ background: _palette(border-bg);
177
+ border-radius: _size(border-radius);
178
+ border: solid 2px _palette(border);
179
+ font-family: _font(family-fixed);
180
+ font-size: 0.9em;
181
+ margin: 0 0.25em;
182
+ padding: 0.25em 0.65em;
183
+ }
184
+
185
+ pre {
186
+ -webkit-overflow-scrolling: touch;
187
+ font-family: _font(family-fixed);
188
+ font-size: 0.9em;
189
+ margin: 0 0 _size(element-margin) 0;
190
+
191
+ code {
192
+ display: block;
193
+ line-height: 1.75em;
194
+ padding: 1em 1.5em;
195
+ overflow-x: auto;
196
+ }
197
+ }
198
+
199
+ hr {
200
+ border: 0;
201
+ border-bottom: solid 2px _palette(border);
202
+ margin: (_size(element-margin) * 1.25) 0;
203
+
204
+ &.major {
205
+ margin: (_size(element-margin) * 2) 0;
206
+ }
207
+ }
208
+
209
+ .align-left {
210
+ text-align: left;
211
+ }
212
+
213
+ .align-center {
214
+ text-align: center;
215
+ }
216
+
217
+ .align-right {
218
+ text-align: right;
219
+ }