-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathforwards-light.scss
More file actions
130 lines (105 loc) · 2.51 KB
/
forwards-light.scss
File metadata and controls
130 lines (105 loc) · 2.51 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
/*-- scss:defaults --*/
@import url("https://fonts.googleapis.com/css?family=Atkinson+Hyperlegible+Next:400,700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Atkinson+Hyperlegible+Mono");
// fonts
$font-family-sans-serif: "Atkinson Hyperlegible Next", Helvetica, sans-serif !default;
$font-family-monospace: "Atkinson Hyperlegible Mono", monospace;
$headings-font-family: "Atkinson Hyperlegible Next", Helvetica, sans-serif !default;
// Forwards colours
$darkpurple: #200F48;
$darkpurple30: #bcb7c8;
$plum: #A5317D;
$pink: #D2436F;
$red: #E95A61;
$orange: #FD9567;
$peach: #FDC88D;
$yellow: #FEE4A7;
$blue: #3143A5;
$green: #31A559;
$purple: #5931A5;
$blue_dark: #222f73;
$green_dark: #22733e;
$red_dark: #a33f44;
$orange_dark: #b16848;
$peach_dark: #b18c63;
$darkpurple_light: $darkpurple30;
$gray: #58595B;
$gray_dark: #383838; // this is text colour used on main Warwick site
$black: #000000;
$gray20: #cccccc; // % of black
$gray10: #e6e6e6; // % of black
$gray05: #f2f2f2; // % of black
$white: #ffffff;
$primary: $darkpurple !default;
$body-color: $gray_dark;
$link-color: $pink;
$code-color: $plum;
$navbar-bg: $primary;
$navbar-fg: $yellow;
$callout-color-note: $blue;
$callout-color-caution: $peach;
$callout-color-tip: $green;
$callout-color-warning: $orange;
$callout-color-important: $red;
/*-- scss:rules --*/
// color classes
.primary {
color: $primary;
}
#quarto-header > nav > div > div.navbar-brand-container.mx-auto > a:hover {
color: $orange;
}
#navbarCollapse > ul > li > a:hover {
color: $orange;
}
#navbarCollapse > ul > li > a.active {
color: $orange;
}
// code
pre.sourceCode {
border-radius: 0;
border-left-color: $gray;
}
h1, h2 {
//text-transform: uppercase;
font-weight: 700;
}
#quarto-header {
//text-transform: uppercase;
font-family: $headings-font-family;
font-weight: 700;
}
// iframes for slides embedded in talks pages
iframe.slide-deck {
border: 3px solid $gray;
width: 100%;
}
.ar4x3 {
aspect-ratio: 4 / 3;
}
.ar3x2 {
aspect-ratio: 3 / 2;
}
.ar16x9 {
aspect-ratio: 16 / 9;
}
// icon-links
.icon-link {
background-color: transparent;
color: $primary;
border: 2px solid !important;
border-color: $primary;
padding: 5px .4rem 5px .4rem !important;
margin-top: 4px;
margin-right: 8px;
margin-bottom: 4px;
border-radius: 5px;
display: inline-block;
text-decoration: none;
}
.icon-link:hover{
background-color: $primary;
border-color: $primary;
color: $body-bg;
text-decoration: none;
}