summaryrefslogtreecommitdiff
path: root/docs/qmk_custom_light.css
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2021-01-20 18:46:01 +0000
committerGitHub <noreply@github.com>2021-01-20 18:46:01 +0000
commit4e8166750b21cfd3feaba0d6024087fb5c76bca9 (patch)
treec124714e565321818485b96509fd70026fe49f84 /docs/qmk_custom_light.css
parent1328ab7c7defdca40872273147f387618b1a48c3 (diff)
Small tweaks to docs to make them more user friendly (#11518)
* first pass * firmware firmware? * Split out debug + testing docs * tidy up duplicate css * Add extra info to debug example Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Drashna Jaelre <drashna@live.com>
Diffstat (limited to 'docs/qmk_custom_light.css')
-rw-r--r--docs/qmk_custom_light.css25
1 files changed, 18 insertions, 7 deletions
diff --git a/docs/qmk_custom_light.css b/docs/qmk_custom_light.css
index c5d36cf6f0..c65e54396d 100644
--- a/docs/qmk_custom_light.css
+++ b/docs/qmk_custom_light.css
@@ -29,13 +29,16 @@
padding: 0;
}
-
-:root {
- --docsifytabs-border-color: #ddd;
- --docsifytabs-tab-highlight-color: var(--theme-color, #0074d9);
-
- --docsifytabs-tab-background: #f8f8f8;
- --docsifytabs-tab-background-active: transparent;
+@media only screen and (min-width: 768px) {
+ .flex-container {
+ display:flex;
+ flex-flow:row;
+ }
+ .flex-container > p {
+ flex-basis: 100%;
+ flex: 1;
+ margin: 1em 2em 1em 2em;
+ }
}
.docsify-tabs__tab:focus {
@@ -45,3 +48,11 @@
.docsify-tabs__content .anchor {
transition: none;
}
+
+:root {
+ --docsifytabs-border-color: #ddd;
+ --docsifytabs-tab-highlight-color: var(--theme-color, #0074d9);
+
+ --docsifytabs-tab-background: #f8f8f8;
+ --docsifytabs-tab-background-active: transparent;
+}