123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268 |
- html {
- font-family:'Open Sans',sans-serif;
- background-image:url(images/noise.png);
- background-blend-mode: soft-light;
- }
- .icon {
- fill: var(--foreground);
- }
- .accessibility-menu {
- background-color:var(--background-hard)!important;
- border:2px solid var(--border);
- border-radius:var(--s);
- display:block;
- height:min-content;
- left:-90%;
- padding:var(--s);
- position:absolute;
- top:-90%;
- width:30%;
- z-index:999;
- }
- .accessibility-menu ul {
- list-style-type:disc;
- margin-left:var(--m);
- }
- .accessibility-menu:focus-within:not(:active) {
- left:var(--s);
- top:var(--s);
- }
- .active {
- font:900 1em "Open Sans",sans-serif;
- }
- .anchor-hidden {
- height:1px;
- overflow:hidden;
- width:1px;
- }
- .doc-navigation {
- background-color:var(--background-card)!important;
- border-bottom:0;
- border-radius:var(--s) var(--s) 0 0;
- padding:var(--s);
- }
- .doc-navigation ul {
- display:flex;
- }
- .header-instance {
- margin-left:auto;
- margin-right:auto;
- text-align:center;
- }
- .icon {
- height:1em;
- vertical-align:center;
- width:1em;
- }
- .markdown-blocks {
- background-color:var(--background-card)!important;
- border-radius:0 0 var(--s) var(--s);
- padding:var(--s);
- }
- .markdown-blocks ul {
- list-style:disc;
- margin-left:1em;
- }
- .markdown-blocks ul li {
- margin-bottom:.2em;
- }
- .page-content {
- margin-top:var(--s);
- width:100%;
- }
- .page-content-wrapper {
- margin-left:auto;
- margin-right:auto;
- padding:var(--s) var(--s) 0;
- position:relative;
- top:var(--xxl);
- }
- .page-header {
- background:var(--background-card);
- box-shadow:var(--shadow);
- display:inline-flex;
- height:var(--xxl);
- padding:var(--s);
- position:fixed;
- top:0;
- z-index:1;
- }
- .page-header #toggle-panel-left {
- float:left;
- }
- .page-header #toggle-panel-right {
- float:right;
- }
- .page-header .header-instance {
- text-align:center;
- }
- .section-panel {
- padding:var(--s);
- position:fixed;
- top:var(--xxl);
- }
- .section-panel .panel-content {
- display:block;
- height:calc(100vh - var(--xxl));
- overflow:auto;
- }
- .section-panel-left {
- left:0;
- }
- .section-panel-right {
- right:0;
- }
- hr {
- margin-bottom:var(--s);
- margin-top:var(--s);
- }
- @media only screen and (max-width: 512px) {
- html {
- font-size:85%;
- }
- }
- @media only screen and (max-width: 1280px) {
- #toggle-panel-left:checked~.section-panel-left,#toggle-panel-right:checked~.section-panel-right {
- background-color:var(--background-hard);
- box-shadow:var(--shadow);
- left:0;
- width:100vw;
- z-index:auto;
- }
- #toggle-panel-left:not(:checked)~.section-panel-left,#toggle-panel-right:not(:checked)~.section-panel-right {
- display:none;
- }
- .page-content {
- max-width:100%;
- }
- .page-header,.page-content-wrapper {
- width:100%;
- }
- input[id|=toggle-panel] {
- position:absolute;
- top:-100%;
- }
- label[for|=toggle-panel] {
- cursor:pointer;
- }
- }
- @media only screen and (min-width: 1281px) {
- .page-content-wrapper {
- width:66vw;
- }
- .page-header {
- width:100%;
- }
- .section-panel {
- width:17vw;
- }
- a[id|=anchor]:target+.accessibility-target {
- animation-duration:.6s;
- animation-name:highlight;
- animation-timing-function:ease-in-out;
- }
- label[for|=toggle-panel],input[id|=toggle-panel] {
- display:none!important;
- }
- }
- @media only screen and (min-width: 1921px) {
- .page-content-wrapper {
- width:44vw;
- }
- .page-header {
- width:66vw;
- }
- .section-panel {
- width:11vw;
- }
- .page-header,.section-panel-left {
- left:17vw;
- }
- .section-panel-right {
- right:17vw;
- }
- label[for|=toggle-panel],input[id|=toggle-panel] {
- display:none!important;
- }
- }
- @keyframes fadeIn {
- 0% {
- opacity:0;
- transform:translateY(-10px);
- }
- 100% {
- opacity:unset;
- transform:none;
- }
- }
- @keyframes fadeOut {
- 0% {
- opacity:unset;
- transform:none;
- }
- 100% {
- opacity:0;
- transform:translateY(-10px);
- }
- }
- @keyframes highlight {
- 0%,100% {
- border-radius:var(--s);
- box-shadow:initial;
- }
- 50% {
- border-radius:var(--s);
- box-shadow:inset 0 20px 40px #fff;
- transition:box-shadow .3s ease-in-out;
- z-index:666;
- }
- }
|