邃芒官网、邃芒慧影、口播(H5) https://m.metavatar.cc
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
 
 
 
 

285 рядки
6.6 KiB

  1. /*!
  2. * ress.css • v4.0.0
  3. * MIT License
  4. * github.com/filipelinhares/ress
  5. */
  6. /* # =================================================================
  7. # Global selectors
  8. # ================================================================= */
  9. html {
  10. box-sizing: border-box;
  11. -webkit-text-size-adjust: 100%; /* Prevent adjustments of font size after orientation changes in iOS */
  12. word-break: normal;
  13. -moz-tab-size: 4;
  14. tab-size: 4;
  15. }
  16. *,
  17. ::before,
  18. ::after {
  19. box-sizing: inherit;
  20. background-repeat: no-repeat; /* Set `background-repeat: no-repeat` to all elements and pseudo elements */
  21. }
  22. ::before,
  23. ::after {
  24. text-decoration: inherit; /* Inherit text-decoration and vertical align to ::before and ::after pseudo elements */
  25. vertical-align: inherit;
  26. }
  27. * {
  28. padding: 0; /* Reset `padding` and `margin` of all elements */
  29. margin: 0;
  30. }
  31. /* # =================================================================
  32. # General elements
  33. # ================================================================= */
  34. hr {
  35. height: 0; /* Add the correct box sizing in Firefox */
  36. overflow: visible; /* Show the overflow in Edge and IE */
  37. color: inherit; /* Correct border color in Firefox. */
  38. }
  39. details,
  40. main {
  41. display: block; /* Render the `main` element consistently in IE. */
  42. }
  43. summary {
  44. display: list-item; /* Add the correct display in all browsers */
  45. }
  46. small {
  47. font-size: 80%; /* Set font-size to 80% in `small` elements */
  48. }
  49. [hidden] {
  50. display: none; /* Add the correct display in IE */
  51. }
  52. abbr[title] {
  53. /* Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari */
  54. text-decoration: underline;
  55. text-decoration: underline dotted;
  56. border-bottom: none; /* Remove the bottom border in Chrome 57 */
  57. }
  58. a {
  59. background-color: transparent; /* Remove the gray background on active links in IE 10 */
  60. }
  61. a:active,
  62. a:hover {
  63. outline-width: 0; /* Remove the outline when hovering in all browsers */
  64. }
  65. code,
  66. kbd,
  67. pre,
  68. samp {
  69. font-family: monospace, monospace; /* Specify the font family of code elements */
  70. }
  71. pre {
  72. font-size: 1em; /* Correct the odd `em` font sizing in all browsers */
  73. }
  74. b,
  75. strong {
  76. font-weight: bolder; /* Add the correct font weight in Chrome, Edge, and Safari */
  77. }
  78. /* https://gist.github.com/unruthless/413930 */
  79. sub,
  80. sup {
  81. position: relative;
  82. font-size: 75%;
  83. line-height: 0;
  84. vertical-align: baseline;
  85. }
  86. sub {
  87. bottom: -.25em;
  88. }
  89. sup {
  90. top: -.5em;
  91. }
  92. table {
  93. text-indent: 0; /* Remove text indentation in Chrome, Edge, and Safari */
  94. border-color: inherit; /* Correct border color in all Chrome, Edge, and Safari. */
  95. }
  96. /* # =================================================================
  97. # Forms
  98. # ================================================================= */
  99. input {
  100. border-radius: 0;
  101. }
  102. /* Replace pointer cursor in disabled elements */
  103. [disabled] {
  104. cursor: default;
  105. }
  106. [type='number']::-webkit-inner-spin-button,
  107. [type='number']::-webkit-outer-spin-button {
  108. height: auto; /* Correct the cursor style of increment and decrement buttons in Chrome */
  109. }
  110. [type='search'] {
  111. -webkit-appearance: textfield; /* Correct the odd appearance in Chrome and Safari */
  112. outline-offset: -2px; /* Correct the outline style in Safari */
  113. }
  114. [type='search']::-webkit-search-decoration {
  115. -webkit-appearance: none; /* Remove the inner padding in Chrome and Safari on macOS */
  116. }
  117. textarea {
  118. overflow: auto; /* Internet Explorer 11+ */
  119. resize: vertical; /* Specify textarea resizability */
  120. }
  121. button,
  122. input,
  123. optgroup,
  124. select,
  125. textarea {
  126. font: inherit; /* Specify font inheritance of form elements */
  127. }
  128. optgroup {
  129. font-weight: bold; /* Restore the font weight unset by the previous rule */
  130. }
  131. button {
  132. overflow: visible; /* Address `overflow` set to `hidden` in IE 8/9/10/11 */
  133. }
  134. button,
  135. select {
  136. text-transform: none; /* Firefox 40+, Internet Explorer 11- */
  137. }
  138. /* Apply cursor pointer to button elements */
  139. button,
  140. [type='button'],
  141. [type='reset'],
  142. [type='submit'],
  143. [role='button'] {
  144. color: inherit;
  145. cursor: pointer;
  146. }
  147. /* Remove inner padding and border in Firefox 4+ */
  148. button::-moz-focus-inner,
  149. [type='button']::-moz-focus-inner,
  150. [type='reset']::-moz-focus-inner,
  151. [type='submit']::-moz-focus-inner {
  152. padding: 0;
  153. border-style: none;
  154. }
  155. /* Replace focus style removed in the border reset above */
  156. button:-moz-focusring,
  157. [type='button']::-moz-focus-inner,
  158. [type='reset']::-moz-focus-inner,
  159. [type='submit']::-moz-focus-inner {
  160. outline: 1px dotted ButtonText;
  161. }
  162. button,
  163. html [type='button'], /* Prevent a WebKit bug where (2) destroys native `audio` and `video`controls in Android 4 */
  164. [type='reset'],
  165. [type='submit'] {
  166. -webkit-appearance: button; /* Correct the inability to style clickable types in iOS */
  167. }
  168. /* Remove the default button styling in all browsers */
  169. button,
  170. input,
  171. select,
  172. textarea {
  173. background-color: transparent;
  174. border-style: none;
  175. }
  176. a:focus,
  177. button:focus,
  178. input:focus,
  179. select:focus,
  180. textarea:focus {
  181. outline-width: 0;
  182. }
  183. /* Style select like a standard input */
  184. select {
  185. -moz-appearance: none; /* Firefox 36+ */
  186. -webkit-appearance: none; /* Chrome 41+ */
  187. }
  188. select::-ms-expand {
  189. display: none; /* Internet Explorer 11+ */
  190. }
  191. select::-ms-value {
  192. color: currentColor; /* Internet Explorer 11+ */
  193. }
  194. legend {
  195. display: table; /* Correct the text wrapping in Edge and IE */
  196. max-width: 100%; /* Correct the text wrapping in Edge and IE */
  197. max-width: 100%; /* Correct the text wrapping in Edge 18- and IE */
  198. color: inherit; /* Correct the color inheritance from `fieldset` elements in IE */
  199. white-space: normal; /* Correct the text wrapping in Edge and IE */
  200. border: 0; /* Correct `color` not being inherited in IE 8/9/10/11 */
  201. }
  202. ::-webkit-file-upload-button {
  203. font: inherit; /* Change font properties to `inherit` in Chrome and Safari */
  204. color: inherit;
  205. /* Correct the inability to style clickable types in iOS and Safari */
  206. -webkit-appearance: button;
  207. }
  208. /* # =================================================================
  209. # Specify media element style
  210. # ================================================================= */
  211. img {
  212. border-style: none; /* Remove border when inside `a` element in IE 8/9/10 */
  213. }
  214. /* Add the correct vertical alignment in Chrome, Firefox, and Opera */
  215. progress {
  216. vertical-align: baseline;
  217. }
  218. /* # =================================================================
  219. # Accessibility
  220. # ================================================================= */
  221. /* Specify the progress cursor of updating elements */
  222. [aria-busy='true'] {
  223. cursor: progress;
  224. }
  225. /* Specify the pointer cursor of trigger elements */
  226. [aria-controls] {
  227. cursor: pointer;
  228. }
  229. /* Specify the unstyled cursor of disabled, not-editable, or otherwise inoperable elements */
  230. [aria-disabled='true'] {
  231. cursor: default;
  232. }