forked from mitvis/website
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathstyles2.1.scss
More file actions
32 lines (27 loc) · 873 Bytes
/
styles2.1.scss
File metadata and controls
32 lines (27 loc) · 873 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
---
# this ensures Jekyll reads the file to be transformed into CSS later
# only Main files contain this front matter, not partials.
---
$body-font: 'Alegreya Sans', sans-serif;
$heading-font: 'Alegreya Sans SC', serif;
$border-radius: 10px;
$csail-orange: #B94700;
$csail-yellow: #F0B323;
$csail-lgrey: #898D8D;
$csail-dgrey: #525252;
$grad-orange: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(204, 82, 0, 0.4) 100%);
$grad-yellow: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba($csail-yellow, 0.4) 100%);
$border-orange: rgba(204, 82, 0, 0.5);
@mixin for-md-down {
@media screen and (max-width: 47.9em) { @content }
}
@mixin for-md-up {
@media screen and (min-width: 48em) { @content }
}
@import 'pure.scss';
@import 'scaffold.scss';
@import 'header.scss';
@import 'papers.scss';
@import 'people.scss';
@import 'news.scss';
@import 'research_themes.scss';