Skip to content

Commit fb924d5

Browse files
authored
docs: replace screenshots after redesign (#612)
1 parent 2de61e2 commit fb924d5

File tree

11 files changed

+18
-24
lines changed

11 files changed

+18
-24
lines changed
-205 KB
Loading
-43.2 KB
Loading
-34.8 KB
Loading

exampleSite/content/en/features/theming/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ title: Theming
88

99
If you want to customize the theme's color scheme to give it your individual touch, you are only a few lines of CSS away. Generally, you need to override the default settings. The easiest way to do this is to create a file named `static/custom.css` right at the root of your site.
1010

11-
All the necessary CSS customization properties are listed below. If you want to customize elements that don't use these properties, you can always look up the class name and override it directly. For inspiration, you can also take a look at [https://www.color-hex.com/color-palettes/](https://www.color-hex.com/). In this simple example, we'll use the [_Beach_](https://www.color-hex.com/color-palette/895) color palette.
11+
All the necessary CSS customization properties are listed below. If you want to customize elements that don't use these properties, you can always look up the class name and override it directly. For inspiration, you can also take a look at [https://www.color-hex.com](https://www.color-hex.com/color-palettes/). In this simple example, we'll use the [_Beach_](https://www.color-hex.com/color-palette/895) color palette.
1212

1313
[![Beach Color Palette](images/theme-example.png)](images/theme-example.png)
1414

142 KB
Loading

exampleSite/content/en/usage/menus.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@ content/
2929
└── level-2-2.md
3030
```
3131

32-
[![Example file-tree menu](/media/file-tree.png)](/media/file-tree.png)
33-
3432
## Bundle menu
3533

3634
This type of navigation needs to be enabled first by setting `geekdocMenuBundle` to `true` in your [site configuration](/usage/configuration/#site-configuration). After you have activated the bundle menu, you start with an empty navigation. This is intentional because bundle menus have to be defined manually in a data file. While this increases the effort it also offers maximum flexibility in the design. The data file needs to be written in YAML and placed at `data/menu/main.yaml`.
@@ -68,8 +66,6 @@ main:
6866
6967
As an advantage you can add [icons](/features/icon-sets/) to your menu entries e.g. `icon: "gdoc_notification"`.
7068

71-
[![Example bundle menu](/media/bundle-menu.png)](/media/bundle-menu.png)
72-
7369
### More menu
7470

7571
{{< hint type=tip >}}
@@ -97,8 +93,6 @@ more:
9793
icon: "gdoc_github"
9894
```
9995

100-
[![Example bundle menu](/media/more-menu.png)](/media/more-menu.png)
101-
10296
## Extra Header Menu
10397

10498
If you want to customize the header menu, this can be achieved by using a data file written in YAML and placed at `data/menu/extra.yaml`.

exampleSite/static/custom.css.example

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@
2121
--link-color: #518169;
2222
--link-color-visited: #c54e8a;
2323

24-
--code-background: #f8f9fa;
24+
--code-background: #f5f6f8;
2525
--code-accent-color: #e3e7eb;
2626
--code-accent-color-lite: #eff1f3;
2727
--code-font-color: #5f5f5f;
2828

29-
--code-copy-background: #f8f9fa;
29+
--code-copy-background: #f5f6f8;
3030
--code-copy-font-color: #6b7784;
3131
--code-copy-border-color: #adb4bc;
3232
--code-copy-success-color: #00c853;
@@ -36,10 +36,10 @@
3636

3737
--control-icons: #b2bac1;
3838

39-
--footer-background: #efefef;
40-
--footer-font-color: #efefef;
41-
--footer-link-color: #efefef;
42-
--footer-link-color-visited: #efefef;
39+
--footer-background: #2f333e;
40+
--footer-font-color: #ffffff;
41+
--footer-link-color: #ffcc5c;
42+
--footer-link-color-visited: #ffcc5c;
4343
}
4444
@media (prefers-color-scheme: light) {
4545
:root {
@@ -57,12 +57,12 @@
5757
--link-color: #518169;
5858
--link-color-visited: #c54e8a;
5959

60-
--code-background: #f8f9fa;
60+
--code-background: #f5f6f8;
6161
--code-accent-color: #e3e7eb;
6262
--code-accent-color-lite: #eff1f3;
6363
--code-font-color: #5f5f5f;
6464

65-
--code-copy-background: #f8f9fa;
65+
--code-copy-background: #f5f6f8;
6666
--code-copy-font-color: #6b7784;
6767
--code-copy-border-color: #adb4bc;
6868
--code-copy-success-color: #00c853;
@@ -72,10 +72,10 @@
7272

7373
--control-icons: #b2bac1;
7474

75-
--footer-background: #112b3c;
75+
--footer-background: #2f333e;
7676
--footer-font-color: #ffffff;
77-
--footer-link-color: #f66b0e;
78-
--footer-link-color-visited: #f66b0e;
77+
--footer-link-color: #ffcc5c;
78+
--footer-link-color-visited: #ffcc5c;
7979
}
8080
}
8181

@@ -110,10 +110,10 @@
110110

111111
--control-icons: #b2bac1;
112112

113-
--footer-background: #112b3c;
113+
--footer-background: #2f333e;
114114
--footer-font-color: #ffffff;
115-
--footer-link-color: #f66b0e;
116-
--footer-link-color-visited: #f66b0e;
115+
--footer-link-color: #ffcc5c;
116+
--footer-link-color-visited: #ffcc5c;
117117
}
118118
@media (prefers-color-scheme: dark) {
119119
:root {
@@ -146,9 +146,9 @@
146146

147147
--control-icons: #b2bac1;
148148

149-
--footer-background: #112b3c;
149+
--footer-background: #2f333e;
150150
--footer-font-color: #ffffff;
151-
--footer-link-color: #f66b0e;
152-
--footer-link-color-visited: #f66b0e;
151+
--footer-link-color: #ffcc5c;
152+
--footer-link-color-visited: #ffcc5c;
153153
}
154154
}
-68.3 KB
Binary file not shown.
-80.2 KB
Binary file not shown.
-82.5 KB
Binary file not shown.

0 commit comments

Comments
 (0)