Skip to content
This repository was archived by the owner on Feb 6, 2025. It is now read-only.

Commit cfed46d

Browse files
authored
Merge branch 'main' into docs/nodejs-dotnet-removal
2 parents 3d0aff0 + ac5ab1e commit cfed46d

File tree

2 files changed

+116
-0
lines changed

2 files changed

+116
-0
lines changed

docusaurus.config.js

+4
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ module.exports = {
88
organizationName: "amplication", // Usually your GitHub org/user name.
99
projectName: "amplication", // Usually your repo name.
1010
trailingSlash: true,
11+
stylesheets: [
12+
"https://fonts.googleapis.com/css?family=Poppins"
13+
],
1114
themeConfig: {
1215
metadata: [
1316
{ name: "twitter:card", content: "summary_large_image" },
@@ -177,6 +180,7 @@ module.exports = {
177180
editUrl: "https://github.com/amplication/docs/edit/main/",
178181
showLastUpdateAuthor: true,
179182
showLastUpdateTime: true,
183+
breadcrumbs: false
180184
},
181185
blog: false,
182186
theme: {

src/css/custom.css

+112
Original file line numberDiff line numberDiff line change
@@ -222,3 +222,115 @@ article > header {
222222
display: none;
223223
}
224224
}
225+
226+
.menu__link {
227+
color: #B7BAC7;
228+
font-size: 14px;
229+
}
230+
231+
.menu__link.menu__link--active,
232+
.menu__link.menu__link--sublist.menu__link--active {
233+
color: #FFF;
234+
}
235+
236+
.markdown a, .markdown a:hover {
237+
color: #53DBEE;
238+
}
239+
240+
.navbar__link:hover, .navbar__link--active {
241+
color: #53DBEE;
242+
}
243+
244+
.markdown .alert a {
245+
text-decoration-color: #53DBEE;
246+
}
247+
248+
.theme-edit-this-page {
249+
color: #53DBEE;
250+
}
251+
252+
.pagination-nav__link:hover {
253+
border-color: #53DBEE;
254+
}
255+
256+
.pagination-nav__label {
257+
color: #53DBEE;
258+
}
259+
260+
.navbar__link {
261+
font-size: 14px;
262+
}
263+
264+
.navbar__logo img {
265+
height: 82%;
266+
}
267+
268+
@media only screen and (max-width: 995px) {
269+
.navbar__logo img {
270+
height: 90%;
271+
}
272+
}
273+
274+
.table-of-contents__link {
275+
color: #B7BAC7;
276+
font-size: 12px;
277+
}
278+
279+
.table-of-contents__link.toc-highlight.table-of-contents__link--active,
280+
.table-of-contents__link:hover {
281+
color: #FFF;
282+
}
283+
284+
.breadcrumbs__link > svg > path {
285+
fill: #B7BAC7;
286+
}
287+
288+
.markdown h1:first-child {
289+
font-size: 32px;
290+
font-weight: 600;
291+
line-height: 1.25rem;
292+
margin-top: 1rem;
293+
}
294+
295+
.markdown > h2 {
296+
font-size: 18px;
297+
font-weight: 600;
298+
line-height: 1.25rem;
299+
}
300+
301+
.markdown > pre,
302+
.markdown > ul,
303+
.markdown > ol,
304+
.markdown > p {
305+
color: #D3D4DC;
306+
font-size: 14px;
307+
line-height: 1.25rem;
308+
}
309+
310+
.markdown .theme-admonition {
311+
font-size: 14px;
312+
}
313+
314+
.markdown .theme-admonition a {
315+
text-decoration: none;
316+
}
317+
318+
.markdown .theme-admonition a:hover {
319+
text-decoration: underline;
320+
}
321+
322+
.menu__link--sublist-caret:after {
323+
background: var(--ifm-menu-link-sublist-icon) 50% / 1.5rem 1.5rem
324+
}
325+
326+
.menu__caret:before {
327+
background: var(--ifm-menu-link-sublist-icon) 50% / 1.5rem 1.5rem
328+
}
329+
330+
.menu::-webkit-scrollbar-track {
331+
background-color: #15192C;
332+
}
333+
334+
.menu::-webkit-scrollbar-thumb {
335+
background-color: #373D57;
336+
}

0 commit comments

Comments
 (0)