zmk/docs/src/css/codes.css
Piotr Gnus 8e235a2d65
fix(docs): Readjusted colors for dark theme for OSes in docs
Previously the colors of operating systems were the same both for dark
and light color scheme. That's not a major issue, but adjusting the
colors for the dark theme to better match the theme looks like an
improvement.

Colors were just darkened by reversing the lightness of each color taken
from the dark theme.
2021-05-05 00:21:27 -04:00

238 lines
3.6 KiB
CSS

/*
* Copyright (c) 2020 The ZMK Contributors
*
* SPDX-License-Identifier: CC-BY-NC-SA-4.0
*/
:root {
--codes-os-fg: black;
--codes-os-windows-bg: #caedfd;
--codes-os-linux-bg: #fff2ca;
--codes-os-android-bg: #d8eed9;
--codes-os-macos-bg: #ececec;
--codes-os-ios-bg: #ffffff;
}
html[data-theme="dark"] {
--codes-os-fg: #f5f6f7;
--codes-os-windows-bg: #032535;
--codes-os-linux-bg: #332600;
--codes-os-android-bg: #112712;
--codes-os-macos-bg: #121212;
--codes-os-ios-bg: #000000;
}
.codes.os.legend {
position: sticky;
z-index: 1;
top: var(--ifm-navbar-height);
width: 100%;
padding-top: 0.5em;
padding-bottom: 0.5em;
background: var(--ifm-background-color);
display: flex;
justify-content: space-between;
}
html[data-theme="light"] .codes.os.legend {
background: white;
}
.codes.os.legend .os {
flex: 1;
margin-left: 0.2em;
margin-right: 0.2em;
padding: 0.1em;
border: 1px var(--ifm-table-border-color) solid;
border-radius: 0.5em;
text-align: center;
}
.codes.os.legend .os .heading {
font-weight: bold;
}
.codes.os.legend .os .heading::after {
content: " : ";
font-weight: normal;
}
.codes .name {
cursor: copy;
}
.codes .name:hover {
opacity: 0.8;
}
.codes .name:active {
color: var(--ifm-font-color-base-inverse);
background: var(--ifm-font-color-base);
}
.codes.os.legend,
.codes table {
font-size: 0.8em;
}
.codes table {
display: table;
font-size: 0.8em;
margin-bottom: 0;
}
.codes th,
.codes td {
padding: 0.2rem;
}
.codes td {
position: relative;
}
.codes th.names,
.codes th.description {
text-align: left;
}
.codes td.names code {
display: block;
float: left;
clear: both;
margin-top: 1px;
margin-bottom: 1px;
font-size: 0.85em;
}
.codes .context {
display: inline;
margin: 0 0 0 0.5em;
font-size: 0.85em;
}
.codes .context::before {
content: "(";
}
.codes .context::after {
content: ")";
}
.codes .symbol {
display: inline-flex;
flex-direction: column;
}
.codes .symbol code {
align-self: flex-start;
width: auto;
}
.codes .symbol .meaning {
flex: 1;
font-size: 0.8em;
text-transform: uppercase;
}
.codes td.documentation,
.codes td.os {
width: 0.1%;
min-width: 1.9rem;
text-align: center;
}
.codes td.documentation {
font-size: 0.8em;
}
.codes td.documentation a {
cursor: help;
}
.codes .os {
color: var(--codes-os-fg);
}
.codes td.os {
font-size: 0.8em;
}
.codes .not-tested {
font-weight: bold;
}
.codes .os.windows {
background: var(--codes-os-windows-bg);
}
.codes .os.linux {
background: var(--codes-os-linux-bg);
}
.codes .os.android {
background: var(--codes-os-android-bg);
}
.codes .os.macos {
background: var(--codes-os-macos-bg);
}
.codes .os.ios {
background: var(--codes-os-ios-bg);
}
.codes .footnotes {
display: flex;
width: 100%;
margin-top: 0;
margin-bottom: 0.5rem;
padding: 0.2rem 0.5rem 0.2rem 0.5rem;
border: var(--ifm-table-border-width) dashed var(--ifm-table-border-color);
border-top: 0;
font-size: 0.8em;
}
.codes .footnotes .label {
display: block;
margin-right: 1em;
font-style: italic;
}
.codes .footnotes .label::after {
content: ":";
}
.codes .footnotes .anchor {
display: block;
position: relative;
top: calc(var(--ifm-navbar-height) * -1 - 6em);
visibility: hidden;
}
.codes .footnote {
flex: 1;
display: flex;
margin-top: 0;
margin-bottom: 0;
}
.codes .footnote .symbol {
flex: 0;
float: left;
margin-right: 0.4em;
font-size: 0.8em;
}
.codes .footnote .content p {
margin-top: 0;
margin-bottom: 0;
}
.codes .footnoteRefs {
float: right;
font-size: 0.8em;
}
.codes .footnoteRefs a {
color: black;
}