123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- .full-width {
- width: 100%;
- }
- .border {
- border: .15rem solid var(--bd-color);
- }
- .float-left {
- float: left;
- }
- .float-right {
- float: right ;
- }
- table {
- border-collapse: collapse;
- }
- table, th, td {
- border: var(--bd-width) var(--bd-style) var(--bd-color);
- }
- h2::after, h3::after {
- display : block ;
- content: '';
- margin-top: 0.2rem;
- border-bottom: var(--bd-width) var(--bd-style) var(--bd-color);
- }
- :root {
- --bg-color: ghostwhite;
- --fg-color: black;
- --bd-color: gray;
- --bd-width: .15rem;
- --bd-style: solid;
- --border: var(--bd-width) var(--bd-style) var(--bd-color);
- --hv-fg-color: white;
- --hv-bg-color: silver;
- --header-bg: whitesmoke;
- --header-width: 6rem;
- }
- html {
- background: var(--bg-color);
- color: var(--fg-color);
- list-style-position: inside;
- }
- body {
- top: 0;
- left: 0;
- margin: 0;
- display: flex;
- position: fixed;
- width: 100%;
- height: 100%;
- /*gap: 1rem;*/
- }
- header {
- background: var(--header-bg);
- max-width: fit-content;
- display: flex;
- flex-direction: column;
- height: 100%;
- border-right: var(--border);
- border-bottom: var(--border);
- overflow-y: auto;
- overflow-x: hidden;
- flex-shrink: 1;
- padding-right: 1rem;
- }
- @media screen and (max-width: 480px) {
- body {
- flex-direction: column;
- position: static;
- }
- header {
- width: 100%;
- max-width: 100%;
- }
- }
- header > nav {
- padding-left: .25rem;
- padding-top: 1rem;
- padding-bottom: 1rem;
- width: 100%;
- border-bottom: var(--border);
- }
- nav {
- padding-left: 1rem;
- width: fit-content;
- display: flex;
- flex-direction: column;
- }
- main {
- /*margin-left: calc(var(--header-width) + 1rem);*/
- padding-left: 1rem;
- padding: .5rem;
- flex-shrink: 100;
- overflow-y: auto;
- }
- a {
- text-decoration: none;
- }
- nav.base > a.prev::before {
- content: '⏎';
- }
- nav.base > a.home::before {
- content: '🏠';
- }
- nav.dirs > a::before {
- content: '🗀 ';
- }
- nav.files > a::before {
- content: '🗎 ';
- }
- nav.document nav {
- border-left: var(--border);
- border-color: gray;
- }
- nav.document a::before {
- content: '🕮 ';
- }
|