-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustom.scss
More file actions
134 lines (113 loc) · 2.53 KB
/
custom.scss
File metadata and controls
134 lines (113 loc) · 2.53 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
130
131
132
133
134
/*-- scss:defaults --*/
@import url('https://fonts.googleapis.com/css2?family=Fira+Code&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Commissioner:wght@100..900&display=swap');
$font-family-sans-serif: "Commissioner", sans-serif !default;
$font-family-monospace: "Fira+Code", monospace;
$web-font-path: "";
$navbar-bg: teal;
/*-- scss:rules --*/
/* commissioner-regular - latin */
@font-face {
font-family: "Commissioner";
font-style: normal;
font-weight: 400;
src: url("./fonts/Commissioner-Light.woff2") format("woff2");
}
/* commissioner-italic - latin */
@font-face {
font-family: "Commissioner";
font-style: italic;
font-weight: 400;
src: url("./fonts/Commissioner-LightItalic.woff2") format("woff2");
}
/* fraunces-regular - latin */
@font-face {
font-family: 'Fraunces';
font-style: normal;
font-weight: 400;
src: local(''),
url('./fonts/Fraunces9ptSoft-Thin.woff2') format('woff2');
}
/* fraunces-italic - latin */
@font-face {
font-family: 'Fraunces';
font-style: italic;
font-weight: 400;
src: local(''),
url('./fonts/Fraunces9ptSoft-ThinItalic.woff2') format('woff2');
}
@font-face {
font-family: 'Font Awesome 5 Free';
font-style: normal;
font-weight: 900;
src: url('./webfonts/fa-solid-900.eot')
url('./webfonts/fa-solid-900.woff2') format('woff2'),
url('./webfonts/fa-solid-900.woff') format('woff'),
url('./webfonts/fa-solid-900.ttf') format('truetype');
}
/* Activities and chalenges box*/
.alert-success {
padding-left: 4rem;
position: relative;
background-color: teal;
}
.code-fold > summary {
color: #ebebeb !important;
font-size: 0.80rem;
}
.alert-success::before {
content: "\f304";
font-family: 'font awesome 5 free';
font-weight: 900;
font-size: 1.25rem;
position: absolute;
top: 1rem;
left: 0;
width: 4rem;
text-align: center;
}
/* Side notes box*/
.alert-info {
padding-left: 3.5rem;
position: relative;
}
.alert-info::before {
content: "\f0eb";
font-family: 'font awesome 5 free';
font-weight: 900;
font-size: 1.25rem;
position: absolute;
top: 1rem;
left: 0;
width: 4rem;
text-align: center;
}
/* Paths and instructions box*/
.alert-primary {
padding-left: 3.5rem;
position: relative;
}
.alert-primary::before {
content: "\f0a4";
font-family: 'font awesome 5 free';
font-weight: 900;
font-size: 1.25rem;
position: absolute;
top: 1rem;
left: 0;
width: 4rem;
text-align: center;
}
.instructions ul,
.instructions ol {
margin-left: -1rem;
}
.rows {
color:#036354
}
.columns {
color:#074D7F
}
.by {
color:#684E05
}