Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 4f092f1

Browse filesBrowse files
website: Add dark theme (#3981)
* Add dark theme to website Signed-off-by: Mathew Wicks <5735406+thesuperzapper@users.noreply.github.com> * Fix white borders on images in dark mode Signed-off-by: Mathew Wicks <5735406+thesuperzapper@users.noreply.github.com> * Fix tables in dark mode Signed-off-by: Mathew Wicks <5735406+thesuperzapper@users.noreply.github.com> * Fix home action buttons on very small screens Signed-off-by: Mathew Wicks <5735406+thesuperzapper@users.noreply.github.com> * Undo architecture diagram changes Signed-off-by: Mathew Wicks <5735406+thesuperzapper@users.noreply.github.com> * Update trainer homepage copy based on review Signed-off-by: Mathew Wicks <5735406+thesuperzapper@users.noreply.github.com> * Make variables for KF colors Signed-off-by: Mathew Wicks <5735406+thesuperzapper@users.noreply.github.com> * Update search colors based on review Signed-off-by: Mathew Wicks <5735406+thesuperzapper@users.noreply.github.com> * Use project logos with words on homepage Signed-off-by: Mathew Wicks <5735406+thesuperzapper@users.noreply.github.com> * Make home section borders gray Signed-off-by: Mathew Wicks <5735406+thesuperzapper@users.noreply.github.com> --------- Signed-off-by: Mathew Wicks <5735406+thesuperzapper@users.noreply.github.com>
1 parent d116f2d commit 4f092f1
Copy full SHA for 4f092f1

File tree

Expand file treeCollapse file tree

86 files changed

+2293
-395
lines changed
Open diff view settings
Filter options

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Dismiss banner
Expand file treeCollapse file tree

86 files changed

+2293
-395
lines changed
Open diff view settings
Collapse file

‎assets/icons/logo-black.svg‎

Copy file name to clipboard
+15Lines changed: 15 additions & 0 deletions
  • Display the source diff
  • Display the rich diff
Loading
Collapse file

‎assets/icons/logo-white.svg‎

Copy file name to clipboard
+15Lines changed: 15 additions & 0 deletions
  • Display the source diff
  • Display the rich diff
Loading
Collapse file

‎assets/icons/logo.svg‎

Copy file name to clipboard
+15-1Lines changed: 15 additions & 1 deletion
  • Display the source diff
  • Display the rich diff
Loading
Collapse file

‎assets/icons/pipelines.svg‎

Copy file name to clipboardExpand all lines: assets/icons/pipelines.svg
-69Lines changed: 0 additions & 69 deletions
This file was deleted.
Collapse file

‎assets/scss/_docsy_main.scss‎

Copy file name to clipboard
+57Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
@import "support/utilities";
2+
@import "colors";
3+
@import "boxes";
4+
@import "blog";
5+
@import "code";
6+
@import "nav";
7+
@import "sidebar-tree";
8+
@import "sidebar-toc";
9+
@import "buttons";
10+
@import "breadcrumb";
11+
@import "alerts";
12+
@import "content";
13+
@import "search";
14+
@import "main-container";
15+
@import "blocks/blocks";
16+
@import "section-index";
17+
@import "pageinfo";
18+
@import "taxonomy";
19+
@import "drawio";
20+
@import "shortcodes";
21+
22+
@if $td-enable-google-fonts {
23+
@import url($web-font-path);
24+
}
25+
26+
footer {
27+
min-height: 150px;
28+
29+
@include media-breakpoint-down(md) {
30+
min-height: 200px;
31+
}
32+
}
33+
34+
// Adjust anchors vs the fixed menu.
35+
@include media-breakpoint-up(md) {
36+
.td-offset-anchor:target {
37+
display: block;
38+
position: relative;
39+
top: -4rem;
40+
visibility: hidden;
41+
}
42+
43+
h2[id]:before,
44+
h3[id]:before,
45+
h4[id]:before,
46+
h5[id]:before {
47+
display: block;
48+
content: " ";
49+
margin-top: -5rem;
50+
height: 5rem;
51+
visibility: hidden;
52+
}
53+
}
54+
55+
56+
@import "rtl/main";
57+
@import "styles_project";

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.