web-documentation 1.0.33 → 1.0.34

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/source/index.css +0 -6
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "web-documentation",
3
- "version": "1.0.33",
3
+ "version": "1.0.34",
4
4
  "description": "Declarative multilanguage documentation website generator",
5
5
  "keywords": [
6
6
  "documentation",
package/source/index.css CHANGED
@@ -32,24 +32,18 @@ body {
32
32
  /* region constants */
33
33
  /** region color */
34
34
  --background-color: white; /* pure white */
35
-
36
35
  --header-background-color: #333; /* gray */
37
36
  --header-background-gradient: linear-gradient(
38
37
  to bottom, var(--header-background-color), var(--headline-color)
39
38
  );
40
39
  --header-font-color: var(--background-color);
41
-
42
40
  --surface-color: #fcffff; /* blueish white */
43
41
  --surface-border-color: #ddd; /* light gray */
44
-
45
42
  --shadow-color: black;
46
-
47
43
  --font-color: var(--header-background-color);
48
44
  --headline-color: #212121; /* light black */
49
-
50
45
  --link-color: #0078d4; /* blue */
51
46
  --link-hover-color: #003a67; /* dark blue */
52
-
53
47
  --footer-background-color: var(--surface-color);
54
48
  --footer-background-gradient: linear-gradient(
55
49
  to bottom, var(--background-color), var(--surface-color)