-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustom.css
More file actions
94 lines (79 loc) · 2.53 KB
/
custom.css
File metadata and controls
94 lines (79 loc) · 2.53 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
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
/**
* Any CSS included here will be global. The classic template
* bundles Infima by default. Infima is a CSS framework designed to
* work well for content-centric websites.
*/
/* You can override the default Infima variables here. */
@tailwind base;
@tailwind components;
@tailwind utilities;
@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,400;0,500;0,700;0,800;1,400;1,700;1,800&family=Golos+Text:wght@400;700&display=swap");
:root {
/* prefab brand colors */
--color-brand-slate: #040035;
--color-brand-slate-light: #e5e5ea;
--color-brand-purple: #4352d1;
--color-brand-purple-light: #ecedfa;
--color-brand-coral: #ed6f78;
--color-brand-coral-light: #fdf0f1;
--color-brand-yellow: #f8d254;
--color-brand-yellow-light: #fefaee;
/* prefab overrides */
--ifm-font-family-base: "Golos Text";
--ifm-heading-font-family: "Barlow";
--ifm-h1-font-size: 2rem;
--ifm-color-content: var(--color-brand-slate);
--ifm-navbar-link-color: white;
--ifm-color-primary: var(--color-brand-purple);
--ifm-color-primary-dark: #29784c;
--ifm-color-primary-darker: #277148;
--ifm-color-primary-darkest: #205d3b;
--ifm-color-primary-light: #33925d;
--ifm-color-primary-lighter: #359962;
--ifm-color-primary-lightest: #3cad6e;
--ifm-code-font-size: 95%;
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1);
}
/* For readability concerns, you should choose a lighter palette in dark mode. */
html[data-theme="dark"] {
--ifm-color-primary: var(--color-brand-coral);
--ifm-color-primary-dark: #21af90;
--ifm-color-primary-darker: #1fa588;
--ifm-color-primary-darkest: #1a8870;
--ifm-color-primary-light: #29d5b0;
--ifm-color-primary-lighter: #32d8b4;
--ifm-color-primary-lightest: #4fddbf;
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
/* prefab overrides */
/* NOTE: I had to add the html prefix to increase the specificity for some of these overrides to actually work */
--ifm-background-color: var(--color-brand-slate);
}
.navbar {
background-color: var(--color-brand-slate);
color: white;
}
.footer--dark {
background-color: var(--color-brand-slate);
}
h1 {
font-weight: 800;
}
@media (min-width: 768px) {
h1 {
font-size: 3rem;
}
}
summary h4 {
line-height: 1.5rem;
margin-bottom: 0;
}
/* Large acquisition announcement banner */
div[class*='announcementBar'] {
font-size: 2rem !important;
padding: 4rem 2rem !important;
font-weight: 600 !important;
line-height: 1.5 !important;
}
div[class*='announcementBarContent'] {
font-size: 2rem !important;
}