style_big.css 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. @namespace "http://www.w3.org/1999/xhtml";
  2. html {
  3. display: block;
  4. }
  5. body {
  6. display: block;
  7. margin: 8px
  8. }
  9. body:-webkit-full-page-media {
  10. background-color: rgb(0, 0, 0)
  11. }
  12. p {
  13. display: block;
  14. margin-block-start: 1__qem;
  15. margin-block-end: 1__qem;
  16. margin-inline-start: 0;
  17. margin-inline-end: 0;
  18. }
  19. article, aside, footer, header, hgroup, main, nav, section {
  20. display: block
  21. }
  22. marquee {
  23. display: inline-block;
  24. width: -webkit-fill-available;
  25. }
  26. blockquote {
  27. display: block;
  28. margin-block-start: 1__qem;
  29. margin-block-end: 1em;
  30. margin-inline-start: 40px;
  31. margin-inline-end: 40px;
  32. }
  33. q:before {
  34. content: open-quote;
  35. }
  36. q:after {
  37. content: close-quote;
  38. }
  39. center {
  40. display: block;
  41. /* special centering to be able to emulate the html4/netscape behaviour */
  42. text-align: -webkit-center
  43. }
  44. :-webkit-any(article,aside,nav,section) h1 {
  45. font-size: 1.5em;
  46. margin-block-start: 0.83__qem;
  47. margin-block-end: 0.83em;
  48. }
  49. table > tr {
  50. vertical-align: middle;
  51. }
  52. td, th {
  53. display: table-cell;
  54. vertical-align: inherit
  55. }
  56. th {
  57. font-weight: bold;
  58. text-align: -internal-center
  59. }
  60. caption {
  61. display: table-caption;
  62. text-align: -webkit-center
  63. }
  64. :-webkit-any(table, thead, tbody, tfoot, tr) > form:-internal-is-html {
  65. display: none !important;
  66. }
  67. input[type="search" i] {
  68. appearance: auto;
  69. box-sizing: border-box;
  70. }
  71. input[type="search" i]::-webkit-search-cancel-button {
  72. appearance: auto;
  73. display: block;
  74. cursor: default;
  75. flex: none;
  76. -webkit-user-modify: read-only !important;
  77. margin-inline-start: 1px;
  78. opacity: 0;
  79. pointer-events: none;
  80. user-select: none !important;
  81. }
  82. input:enabled:read-write:-webkit-any(:focus,:hover)::-webkit-inner-spin-button {
  83. opacity: 1;
  84. pointer-events: auto;
  85. }
  86. ::-webkit-input-placeholder {
  87. -webkit-text-security: none;
  88. color: #757575;
  89. direction: inherit !important;
  90. pointer-events: none !important;
  91. text-orientation: inherit !important;
  92. writing-mode: inherit !important;
  93. }
  94. input::-webkit-input-placeholder {
  95. text-overflow: inherit;
  96. line-height: initial;
  97. white-space: pre;
  98. word-wrap: normal;
  99. overflow: hidden;
  100. -webkit-user-modify: read-only !important;
  101. }
  102. input[type="password" i] {
  103. -webkit-text-security: disc !important;
  104. }
  105. input[type="password" i]::-internal-input-suggested {
  106. -webkit-text-security: disc !important;
  107. }
  108. input[type="hidden" i], input[type="image" i], input[type="file" i] {
  109. -webkit-appearance: initial; /* AutoAppearanceFor() should match to this. */
  110. padding: initial;
  111. background-color: initial;
  112. border: initial;
  113. cursor: default;
  114. }
  115. input[type="button" i]:focus,
  116. input[type="checkbox" i]:focus,
  117. input[type="file" i]:focus,
  118. input[type="hidden" i]:focus,
  119. input[type="image" i]:focus,
  120. input[type="radio" i]:focus,
  121. input[type="reset" i]:focus,
  122. input[type="submit" i]:focus,
  123. input[type="file" i]:focus::-webkit-file-upload-button {
  124. outline-offset: 0
  125. }
  126. dialog:not([open]) {
  127. display: none
  128. }
  129. @page {
  130. /* FIXME: Define the right default values for page properties. */
  131. size: auto;
  132. margin: auto;
  133. padding: 0px;
  134. border-width: 0px;
  135. }
  136. /* Allows thead sections to print at the top of each page. */
  137. @media print {
  138. thead { break-inside:avoid; }
  139. }
  140. /* noscript is handled internally, as it depends on settings. */