-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
62 lines (53 loc) · 1.14 KB
/
style.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
@font-face {
font-family: "Petrona";
/* font-style: normal; */
/* font-weight: 400; */
src: url("./Petrona-VariableFont_wght.ttf") format("truetype");
}
@font-face {
font-family: "Petrona";
src: url("./Petrona-Italic-VariableFont_wght.ttf") format("truetype");
font-style: italic;
}
@font-face {
font-family: "JetBrains Mono";
font-style: normal;
font-weight: 400;
src: url("./JetBrainsMono-Regular.ttf") format("truetype");
}
/* @import url("./prism-gruvbox-dark.css"); */
@import url("./prism-coy-without-shadows.css");
code * {
font-family: "JetBrains Mono";
}
* {
-webkit-tap-highlight-color: transparent;
--main-max-width: 40rem;
--text-font-weight: 500;
--link-font-weight: 800;
--accent-light: orange;
--accent-dark: white;
}
body {
margin: 0;
padding: 0;
display: flex;
align-items: center;
justify-content: center;
margin: 0px;
width: 100%;
height: 100%;
background: var(--accent-light);
/* filter: invert() hue-rotate(2.14rad) saturate(0.5); */
}
html {
width: 100%;
height: 100%;
}
canvas {
max-width: 100%;
max-height: 100%;
width: 100%;
height: 100%;
touch-action: none;
}