You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

196 lines
3.8 KiB

1 year ago
  1. :root{
  2. --wp-admin-theme-color:#007cba;
  3. --wp-admin-theme-color--rgb:0, 124, 186;
  4. --wp-admin-theme-color-darker-10:#006ba1;
  5. --wp-admin-theme-color-darker-10--rgb:0, 107, 161;
  6. --wp-admin-theme-color-darker-20:#005a87;
  7. --wp-admin-theme-color-darker-20--rgb:0, 90, 135;
  8. --wp-admin-border-width-focus:2px;
  9. --wp-block-synced-color:#7a00df;
  10. --wp-block-synced-color--rgb:122, 0, 223;
  11. }
  12. @media (min-resolution:192dpi){
  13. :root{
  14. --wp-admin-border-width-focus:1.5px;
  15. }
  16. }
  17. .wp-element-button{
  18. cursor:pointer;
  19. }
  20. :root{
  21. --wp--preset--font-size--normal:16px;
  22. --wp--preset--font-size--huge:42px;
  23. }
  24. :root .has-very-light-gray-background-color{
  25. background-color:#eee;
  26. }
  27. :root .has-very-dark-gray-background-color{
  28. background-color:#313131;
  29. }
  30. :root .has-very-light-gray-color{
  31. color:#eee;
  32. }
  33. :root .has-very-dark-gray-color{
  34. color:#313131;
  35. }
  36. :root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{
  37. background:linear-gradient(-135deg, #00d084, #0693e3);
  38. }
  39. :root .has-purple-crush-gradient-background{
  40. background:linear-gradient(-135deg, #34e2e4, #4721fb 50%, #ab1dfe);
  41. }
  42. :root .has-hazy-dawn-gradient-background{
  43. background:linear-gradient(-135deg, #faaca8, #dad0ec);
  44. }
  45. :root .has-subdued-olive-gradient-background{
  46. background:linear-gradient(-135deg, #fafae1, #67a671);
  47. }
  48. :root .has-atomic-cream-gradient-background{
  49. background:linear-gradient(-135deg, #fdd79a, #004a59);
  50. }
  51. :root .has-nightshade-gradient-background{
  52. background:linear-gradient(-135deg, #330968, #31cdcf);
  53. }
  54. :root .has-midnight-gradient-background{
  55. background:linear-gradient(-135deg, #020381, #2874fc);
  56. }
  57. .has-regular-font-size{
  58. font-size:1em;
  59. }
  60. .has-larger-font-size{
  61. font-size:2.625em;
  62. }
  63. .has-normal-font-size{
  64. font-size:var(--wp--preset--font-size--normal);
  65. }
  66. .has-huge-font-size{
  67. font-size:var(--wp--preset--font-size--huge);
  68. }
  69. .has-text-align-center{
  70. text-align:center;
  71. }
  72. .has-text-align-left{
  73. text-align:left;
  74. }
  75. .has-text-align-right{
  76. text-align:right;
  77. }
  78. #end-resizable-editor-section{
  79. display:none;
  80. }
  81. .aligncenter{
  82. clear:both;
  83. }
  84. .items-justified-left{
  85. justify-content:flex-start;
  86. }
  87. .items-justified-center{
  88. justify-content:center;
  89. }
  90. .items-justified-right{
  91. justify-content:flex-end;
  92. }
  93. .items-justified-space-between{
  94. justify-content:space-between;
  95. }
  96. .screen-reader-text{
  97. clip:rect(1px, 1px, 1px, 1px);
  98. word-wrap:normal !important;
  99. border:0;
  100. -webkit-clip-path:inset(50%);
  101. clip-path:inset(50%);
  102. height:1px;
  103. margin:-1px;
  104. overflow:hidden;
  105. padding:0;
  106. position:absolute;
  107. width:1px;
  108. }
  109. .screen-reader-text:focus{
  110. clip:auto !important;
  111. background-color:#ddd;
  112. -webkit-clip-path:none;
  113. clip-path:none;
  114. color:#444;
  115. display:block;
  116. font-size:1em;
  117. height:auto;
  118. line-height:normal;
  119. padding:15px 23px 14px;
  120. right:5px;
  121. text-decoration:none;
  122. top:5px;
  123. width:auto;
  124. z-index:100000;
  125. }
  126. html :where(.has-border-color){
  127. border-style:solid;
  128. }
  129. html :where([style*=border-top-color]){
  130. border-top-style:solid;
  131. }
  132. html :where([style*=border-right-color]){
  133. border-left-style:solid;
  134. }
  135. html :where([style*=border-bottom-color]){
  136. border-bottom-style:solid;
  137. }
  138. html :where([style*=border-left-color]){
  139. border-right-style:solid;
  140. }
  141. html :where([style*=border-width]){
  142. border-style:solid;
  143. }
  144. html :where([style*=border-top-width]){
  145. border-top-style:solid;
  146. }
  147. html :where([style*=border-right-width]){
  148. border-left-style:solid;
  149. }
  150. html :where([style*=border-bottom-width]){
  151. border-bottom-style:solid;
  152. }
  153. html :where([style*=border-left-width]){
  154. border-right-style:solid;
  155. }
  156. html :where(img[class*=wp-image-]){
  157. height:auto;
  158. max-width:100%;
  159. }
  160. :where(figure){
  161. margin:0 0 1em;
  162. }
  163. html :where(.is-position-sticky){
  164. --wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height, 0px);
  165. }
  166. @media screen and (max-width:600px){
  167. html :where(.is-position-sticky){
  168. --wp-admin--admin-bar--position-offset:0px;
  169. }
  170. }