-
Notifications
You must be signed in to change notification settings - Fork 0
/
ember.scss
76 lines (63 loc) · 2.44 KB
/
ember.scss
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
/*-- scss:defaults --*/
// use litera as the base
$theme: "litera" !default;
// import google fonts
@import 'https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible:ital,wght@0,400;0,700;1,400;1,700&display=swap';
@import 'https://fonts.googleapis.com/css2?family=Fira+Code:wght@300;400;500;600;700&display=swap';
@import url('https://fonts.googleapis.com/css2?family=Arima:wght@100;200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Overpass+Mono:[email protected]&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nova+Square&display=swap');
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');
// use Atkinson Hyperlegible font if available
$font-family-sans-serif: "Helvetica Neue", "Work Sans", "Source Sans", "Inter", "IBM Plex Sans", "Public Sans", "Noto Sans", "Atkinson Hyperlegible", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
// use Adobe Europa font
@import url("https://use.typekit.net/sfe1vyn.css");
// use Neue Haas Unica Adobe font: <style>
@import url("https://use.typekit.net/vxy3xcn.css");
// use IBM Plex Mono
$font-family-monospace: "Overpass Mono", "Roboto Mono", "IBM Plex Mono", monospace, monospace;
$font-family-serif: "Source Serif Pro", "Literata", "Piazzolla", serif;
$font-family-base: "Helvetica Neue", sans-serif;
/*-- scss:rules --*/
// litera is serif by default: revert to san-serif
p, li, {
font-family: $font-family-base;
font-size: 14px;
}
h1 {
font-family: $font-family-sans-serif;
font-weight: 700;
//letter-spacing: 1px;
font-size: 30px;
}
h2, h3, h4, h5, h6 {
font-family: $font-family-sans-serif;
// font-weight: 400;
//text-transform: uppercase;
//letter-spacing: 1px;
font-size: 22px;
}
a:link {
text-decoration: none;
color: #235440;
// text-decoration-color: #235440;
//text-decoration-thickness: 1px;
//text-underline-offset: 3px;
}
a:visited {
text-decoration: none;
color: #429A77;
//text-decoration-color: #235440;
//text-decoration-thickness: 1px;
//text-underline-offset: 3px;
}
a:hover {
//color: #235440;
text-decoration: underline;
//text-decoration-color: #235440;
text-decoration-thickness: 1px;
text-underline-offset: 3px;
}
a:active {
text-decoration: none;
}