-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
54 lines (48 loc) · 1.64 KB
/
styles.css
File metadata and controls
54 lines (48 loc) · 1.64 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
/* Import fonts */
/* Roboto */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@500&display=swap');
/* Mont */
@font-face {
font-family: 'Mont';
src: local('Mont Bold'), local('Mont Bold'),
url('./fonts//Mont-Bold.woff') format('woff'),
url('./fonts//Mont-Bold.woff') format('woff');
font-weight: bold;
font-style: normal;
}
/* Glacial Indifference */
@font-face {
font-family: 'GlacialIndifference';
src: local('GlacialIndifference Regular'), local('GlacialIndifference Regular'),
url('./fonts//GlacialIndifference-Regular.woff') format('woff'),
url('./fonts//GlacialIndifference-Regular.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'GlacialIndifference';
src: local('GlacialIndifference Bold'), local('GlacialIndifference Bold'),
url('./fonts//GlacialIndifference-Bold.woff') format('woff'),
url('./fonts//GlacialIndifference-Bold.woff') format('woff');
font-weight: bold;
font-style: normal;
}
/* Background colors */
body, footer, .nextra-nav-container nav, .nx-sticky {
background-color: #121217 !important;
}
/* Headings */
h1 {
font-family: 'Mont', sans-serif;
}
h2, h3, h4, h5, h6 {
font-family: 'GlacialIndifference', sans-serif;
}
/* Dark mode disabled */
aside .nx-sticky {
display: none !important;
}
/* Footer */
button.nx-h-7.nx-rounded-md.nx-px-2.nx-text-left.nx-text-xs.nx-font-medium.nx-text-gray-600.nx-transition-colors.dark\:nx-text-gray-400.hover\:nx-bg-gray-100.hover\:nx-text-gray-900.dark\:hover\:nx-bg-primary-100\/5.dark\:hover\:nx-text-gray-50 {
display: none;
}