-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustom.css
More file actions
146 lines (122 loc) · 3.71 KB
/
custom.css
File metadata and controls
146 lines (122 loc) · 3.71 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
/**
* 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.
*/
/* Import Hoverkraft brand fonts */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Roboto+Mono:wght@400;500;600;700&display=swap");
/* Hoverkraft brand color palette */
:root {
/* Hoverkraft brand colors */
--hk-primary: #1d2026;
--hk-secondary: #1998ff;
--hk-accent: #ff5a02;
--hk-info: #00b3ff;
--hk-warning: #ffe671;
--hk-danger: #ff696d;
--hk-success: #00d663;
--hk-light: #506690;
--hk-dark: #000000;
/* Docusaurus theme variables using Hoverkraft colors */
--ifm-color-primary: #1998ff;
--ifm-color-primary-dark: #0585e6;
--ifm-color-primary-darker: #0580db;
--ifm-color-primary-darkest: #046ab5;
--ifm-color-primary-light: #33abff;
--ifm-color-primary-lighter: #40b0ff;
--ifm-color-primary-lightest: #66c2ff;
/* Secondary colors */
--ifm-color-secondary: #ff5a02;
--ifm-color-info: #00b3ff;
--ifm-color-success: #00d663;
--ifm-color-warning: #ffe671;
--ifm-color-danger: #ff696d;
/* Typography */
--ifm-font-family-base:
"Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
"Helvetica Neue", Arial, sans-serif;
--ifm-font-family-monospace:
"Roboto Mono", "Monaco", "Consolas", "Courier New", monospace;
--ifm-code-font-size: 95%;
/* Background and text colors */
--ifm-background-color: #ffffff;
--ifm-navbar-background-color: #ffffff;
--ifm-footer-background-color: #1d2026;
--ifm-footer-color: #ffffff;
/* Code highlighting */
--docusaurus-highlighted-code-line-bg: rgba(25, 152, 255, 0.1);
/* Custom properties for components */
--ifm-navbar-shadow: 0 1px 3px rgba(29, 32, 38, 0.1);
--ifm-button-border-radius: 8px;
}
/* Dark mode colors using Hoverkraft palette */
[data-theme="dark"] {
--ifm-color-primary: #1998ff;
--ifm-color-primary-dark: #0585e6;
--ifm-color-primary-darker: #0580db;
--ifm-color-primary-darkest: #046ab5;
--ifm-color-primary-light: #33abff;
--ifm-color-primary-lighter: #40b0ff;
--ifm-color-primary-lightest: #66c2ff;
/* Dark theme background */
--ifm-background-color: #1d2026;
--ifm-background-surface-color: #252832;
/* Dark theme text */
--ifm-font-color-base: #ffffff;
--ifm-font-color-secondary: #506690;
/* Dark theme navbar */
--ifm-navbar-background-color: #252832;
--ifm-navbar-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
/* Code highlighting for dark mode */
--docusaurus-highlighted-code-line-bg: rgba(25, 152, 255, 0.2);
}
/* Enhanced button styles with Hoverkraft branding */
.button--primary {
background: linear-gradient(45deg, #1998ff, #ff5a02);
border: none;
transition: all 0.3s ease;
}
.button--primary:hover {
background: linear-gradient(45deg, #0585e6, #e64a00);
transform: translateY(-1px);
box-shadow: 0 4px 12px rgba(25, 152, 255, 0.3);
}
/* Navbar enhancements */
.navbar {
backdrop-filter: blur(10px);
background: rgba(255, 255, 255, 0.95) !important;
}
[data-theme="dark"] .navbar {
background: rgba(37, 40, 50, 0.95) !important;
}
/* Footer styling with Hoverkraft colors */
.footer--dark {
background: linear-gradient(135deg, #1d2026 0%, #252832 100%);
}
/* Custom link colors */
a {
color: #1998ff;
}
a:hover {
color: #ff5a02;
text-decoration: none;
}
/* Enhanced focus states for accessibility */
button:focus,
.button:focus,
a:focus {
outline: 2px solid #1998ff;
outline-offset: 2px;
}
/* Code block enhancements */
.prism-code {
border-radius: 8px;
}
/* Table of contents styling */
.table-of-contents__link {
color: #506690;
}
.table-of-contents__link:hover,
.table-of-contents__link--active {
color: #1998ff;
}