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