-
Notifications
You must be signed in to change notification settings - Fork 0
/
global.css
47 lines (37 loc) · 1.15 KB
/
global.css
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
/* @import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Oxygen&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inknut+Antiqua&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap');
@font-face {
font-family: cmunorm;
src: url('../fonts/computer-modern/cmunorm.ttf') format('trueType');
}
html {
height: 100%;
}
body {
margin: 0px;
height: 100%;
width: 100%;
display: flex;
overflow: hidden;
box-sizing: border-box;
font-family: Verdana, Geneva, Tahoma, sans-serif;
background-color: #f3f1eb;
}
#root {
--primary: #5f9b65;
--heading: 'Lora', serif;
--text: cmunorm, serif;
--devnagari: 'Inknut Antiqua', serif;
--code: 'Inconsolata', monospace;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
}
.katex-html {
display: none;
}