-
Notifications
You must be signed in to change notification settings - Fork 0
/
anari-custom.scss
113 lines (96 loc) · 2.73 KB
/
anari-custom.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
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
/*-- scss:defaults --*/
$h1-font-size: 155% !default;
$h2-font-size: 135% !default;
$h3-font-size: 115% !default;
$h4-font-size: 100% !default;
$h5-font-size: 100% !default;
$g6-font-size: 100% !default;
//$figure-caption-font-size: 70% !default;
$headings-font-weight: 600 !default;
//@import url("https://cdn.jsdelivr.net/gh/sunn-us/SUIT/fonts/static/woff2/SUIT.css");
//@import url("https://cdn.jsdelivr.net/gh/sunn-us/SUITE/fonts/static/woff2/SUITE.css");
//@import url("https://cdn.jsdelivr.net/gh/wan2land/d2coding/d2coding-ligature-subset.css");
@font-face {
font-family: 'SUIT Variable';
font-weight: 100 900;
src: url('./fonts/SUIT-Variable.woff2') format('woff2-variations');
}
@font-face {
font-family: 'SUITE Variable';
font-weight: 300 900;
src: url('./fonts/SUITE-Variable.woff2') format('woff2-variations');
}
@font-face {
font-family: 'IBM Plex Mono';
font-weight: 400;
src: url("https://github.com/anarinsk/setup_webfonts/raw/main/IBMPlexMono-Medium.woff2") format('woff2'),
// unicode-range: U+000-5FF; /* 라틴어만 다운로드 */
}
@font-face {
font-family: 'D2Coding';
font-weight: 400;
src: url("./fonts/D2Coding-ligature-subset.woff2") format('woff2'),
// unicode-range: U+000-5FF; /* 라틴어만 다운로드 */
}
@font-face {
font-family: 'STIX Two Math';
font-weight: 400;
src: url("./fonts/STIXTwoMath-Regular.woff2") format('woff2'),
// unicode-range: U+000-5FF; /* 라틴어만 다운로드 */
}
/*-- scss:rules --*/
h1, h2, h3, h4, h5, h6 {
font-family: 'SUITE Variable', sans-serif !important;
font-weight: 650;
//text-shadow: -1px -1px 0 rgba(0, 0, 0, .3);
}
ul, li, ol{
font-family: 'SUIT Variable', sans-serif !important;
font-size: 95%;
font-weight: 400;
}
p {
font-family: 'SUIT Variable', sans-serif !important;
font-size: 90%;
font-weight: 400;
}
table {
font-family: 'SUIT Variable', sans-serif !important;
font-size: 90%;
font-weight: 400;
}
.category{
font-family: 'SUIT Variable', sans-serif !important;
font-size: 90%;
font-weight: 350;
text-shadow: -1px -1px 0 rgba(0, 0, 0, .3);
}
.sourceCode {
font-family: 'IBM Plex Mono', 'D2Coding', monospace !important;
font-size: 90%;
}
code {
font-family: 'IBM Plex Mono', 'D2Coding', monospace !important;
font-size: 85%;
}
.math.display {
font-family: 'STIX Two Math' !important; // Not working
font-size: 90%;
}
.math.inline {
font-size: 90% !important;
}
//.math.display .MathJax {
// font-size: 100% !important;
//color: #b22222;
//}
.figure{
display: inline-block;
margin: 0 auto;
border:0px silver solid;
padding: 5px;
text-align: left;
background:#FFFFFF;
font-family: 'SUIT Variable', sans-serif !important;
font-size: 80%;
}