-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: Amazingly incredibly sexy docs redesign (#158)
* add dynamic background * add new fonts * add button * tweaks to fonts, colors and sizings * adjust footer text darkmode color * add simple button * work on hero section * adjust colors, disable darkmode (for now) * fix wrong url on button * fix wrong sidebar id * add new icons * cleanup, adjust graphic sizes * compress logo svg, adjust colors, adjust docs sidebar * put installation navbar item to the right * adjust colors, code block, sidebar and pagination * adjust inline code, adjust colors again * adjust online code blocks * add style for flow diagram * cleanup and add descriptions * add makeshift dark mode * adjust algolia search button design and placement * tweak dark mode * restyle table, restyle table of content, fix nav hover * update og image
- Loading branch information
1 parent
377fbd8
commit 6d8a4ee
Showing
15 changed files
with
894 additions
and
122 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,50 @@ | ||
.features { | ||
display: flex; | ||
align-items: center; | ||
padding: 2rem 0; | ||
padding: 4rem 0; | ||
width: 100%; | ||
border-top: 2px solid #232a3f; | ||
background-color: #f0f9ff; | ||
} | ||
|
||
[data-theme='dark'] .features { | ||
border-top: 2px solid #4e5b79; | ||
background-color: #111625; | ||
} | ||
|
||
.featureSvg { | ||
height: 200px; | ||
width: 200px; | ||
height: 120px; | ||
width: 120px; | ||
margin-bottom: 1rem; | ||
} | ||
|
||
[data-theme='dark'] .featureSvg { | ||
filter: brightness(0.8) contrast(1.2); | ||
} | ||
|
||
.highlight { | ||
color: var(--ifm-color-accent); | ||
} | ||
|
||
[data-theme='dark'] .highlight { | ||
color: var(--ifm-color-accent); | ||
} | ||
|
||
.description { | ||
opacity: 0.8; | ||
} | ||
|
||
[data-theme='dark'] .description { | ||
opacity: 0.9; | ||
color: #a8c4d8; | ||
} | ||
|
||
.title { | ||
font-family: 'Clash Display', sans-serif; | ||
font-weight: 500; | ||
font-size: 1.8rem; | ||
} | ||
|
||
[data-theme='dark'] .title { | ||
color: #e0e0e0; | ||
} |
Oops, something went wrong.