123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- /*
- * blueimp Gallery Demo CSS
- * https://github.com/blueimp/Gallery
- *
- * Copyright 2013, Sebastian Tschan
- * https://blueimp.net
- *
- * Licensed under the MIT license:
- * https://opensource.org/licenses/MIT
- */
- body {
- max-width: 750px;
- margin: 0 auto;
- padding: 1em;
- font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue',
- Arial, sans-serif;
- line-height: 1.4;
- background: #212121;
- color: #dedede;
- }
- a {
- color: #61afef;
- text-decoration: none;
- }
- a:visited {
- color: #56b6c2;
- }
- a:hover {
- color: #98c379;
- }
- figure,
- tr {
- background: #363636;
- }
- tr:nth-child(odd) {
- background: #414141;
- }
- td,
- th {
- padding: 10px;
- text-align: left;
- }
- table {
- width: 100%;
- word-wrap: break-word;
- table-layout: fixed;
- border-collapse: collapse;
- }
- figure {
- margin: 0;
- padding: 10px;
- border-radius: 5px;
- display: inline-block;
- }
- figure,
- table {
- margin-bottom: 20px;
- }
- img,
- canvas {
- border: 0;
- vertical-align: middle;
- }
- h1,
- h2,
- h3,
- h4,
- h5,
- h6 {
- margin-top: 1.5em;
- margin-bottom: 0.5em;
- }
- h1 {
- margin-top: 0.5em;
- }
- button,
- input,
- select,
- textarea {
- box-sizing: border-box;
- font-family: inherit;
- font-size: 100%;
- line-height: 1.15;
- margin: 0;
- padding: 5px;
- }
- input[type='file'] {
- padding: inherit;
- max-width: 100%;
- }
- @media (prefers-color-scheme: light) {
- body {
- background: #ececec;
- color: #212121;
- }
- a {
- color: #225c8d;
- }
- a:visited {
- color: #378f9a;
- }
- a:hover {
- color: #6fa349;
- }
- figure,
- tr {
- background: #fff;
- color: #212121;
- }
- tr:nth-child(odd) {
- background: #f6f6f6;
- }
- }
- @media (min-width: 481px) {
- #navigation {
- list-style: none;
- padding: 0;
- }
- #navigation li {
- display: inline-block;
- }
- #navigation li:not(:first-child)::before {
- content: ' | ';
- }
- }
|