1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- /*
- * This CSS is released under Creative Commons Zero 1.0 Universal license:
- * https://creativecommons.org/publicdomain/zero/1.0/legalcode.txt
- */
- :not(p)
- {
- margin: 0 auto;
- max-width: 60em;
- }
- @media (max-width:89em)
- {
- html
- {
- font-size: 0.95em;
- }
- }
- @media (min-width:90em)
- {
- html
- {
- font-size: 1.05em;
- }
- }
- html
- {
- background: #ddd8e8;
- color: #222;
- font-family: sans-serif;
- line-height: 1.4;
- }
- code,pre, #TOC, a:hover
- {
- background: #ccc7e7;
- }
- a
- {
- color: #22e;
- }
- img,video,iframe,pre
- {
- max-width: 100%;
- overflow: auto;
- }
- .title>*, header ul>li, .nav ul>li,
- #footer ul>li, .h:hover>*
- {
- display: inline;
- margin: 0.7%;
- text-align :center;
- }
- .title>*, span.date
- {
- display: block;
- }
- html, ul, #TOC
- {
- padding: 1em;
- }
- .date, .author, .h a
- {
- display: none;
- }
- @media (min-width:50em)
- {
- .title-logo{display:none}
- #TOC
- {
- float: left;
- margin: 1em;
- min-width: 25%;
- }
- }
|