123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175 |
- @namespace "http://www.w3.org/1999/xhtml";
- html {
- display: block;
- }
- body {
- display: block;
- margin: 8px
- }
- body:-webkit-full-page-media {
- background-color: rgb(0, 0, 0)
- }
- p {
- display: block;
- margin-block-start: 1__qem;
- margin-block-end: 1__qem;
- margin-inline-start: 0;
- margin-inline-end: 0;
- }
- article, aside, footer, header, hgroup, main, nav, section {
- display: block
- }
- marquee {
- display: inline-block;
- width: -webkit-fill-available;
- }
- blockquote {
- display: block;
- margin-block-start: 1__qem;
- margin-block-end: 1em;
- margin-inline-start: 40px;
- margin-inline-end: 40px;
- }
- q:before {
- content: open-quote;
- }
- q:after {
- content: close-quote;
- }
- center {
- display: block;
- /* special centering to be able to emulate the html4/netscape behaviour */
- text-align: -webkit-center
- }
- :-webkit-any(article,aside,nav,section) h1 {
- font-size: 1.5em;
- margin-block-start: 0.83__qem;
- margin-block-end: 0.83em;
- }
- table > tr {
- vertical-align: middle;
- }
- td, th {
- display: table-cell;
- vertical-align: inherit
- }
- th {
- font-weight: bold;
- text-align: -internal-center
- }
- caption {
- display: table-caption;
- text-align: -webkit-center
- }
- :-webkit-any(table, thead, tbody, tfoot, tr) > form:-internal-is-html {
- display: none !important;
- }
- input[type="search" i] {
- appearance: auto;
- box-sizing: border-box;
- }
- input[type="search" i]::-webkit-search-cancel-button {
- appearance: auto;
- display: block;
- cursor: default;
- flex: none;
- -webkit-user-modify: read-only !important;
- margin-inline-start: 1px;
- opacity: 0;
- pointer-events: none;
- user-select: none !important;
- }
- input:enabled:read-write:-webkit-any(:focus,:hover)::-webkit-inner-spin-button {
- opacity: 1;
- pointer-events: auto;
- }
- ::-webkit-input-placeholder {
- -webkit-text-security: none;
- color: #757575;
- direction: inherit !important;
- pointer-events: none !important;
- text-orientation: inherit !important;
- writing-mode: inherit !important;
- }
- input::-webkit-input-placeholder {
- text-overflow: inherit;
- line-height: initial;
- white-space: pre;
- word-wrap: normal;
- overflow: hidden;
- -webkit-user-modify: read-only !important;
- }
- input[type="password" i] {
- -webkit-text-security: disc !important;
- }
- input[type="password" i]::-internal-input-suggested {
- -webkit-text-security: disc !important;
- }
- input[type="hidden" i], input[type="image" i], input[type="file" i] {
- -webkit-appearance: initial; /* AutoAppearanceFor() should match to this. */
- padding: initial;
- background-color: initial;
- border: initial;
- cursor: default;
- }
- input[type="button" i]:focus,
- input[type="checkbox" i]:focus,
- input[type="file" i]:focus,
- input[type="hidden" i]:focus,
- input[type="image" i]:focus,
- input[type="radio" i]:focus,
- input[type="reset" i]:focus,
- input[type="submit" i]:focus,
- input[type="file" i]:focus::-webkit-file-upload-button {
- outline-offset: 0
- }
- dialog:not([open]) {
- display: none
- }
- @page {
- /* FIXME: Define the right default values for page properties. */
- size: auto;
- margin: auto;
- padding: 0px;
- border-width: 0px;
- }
- /* Allows thead sections to print at the top of each page. */
- @media print {
- thead { break-inside:avoid; }
- }
- /* noscript is handled internally, as it depends on settings. */
|