editor-blocks.css 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785
  1. /*
  2. * Theme Name: Karuna
  3. * Description: Gutenberg Block Editor Styles
  4. */
  5. /*--------------------------------------------------------------
  6. >>> TABLE OF CONTENTS:
  7. ----------------------------------------------------------------
  8. 1.0 General Typography
  9. 2.0 General Block Styles
  10. 3.0 Blocks - Common Blocks
  11. 4.0 Blocks - Formatting
  12. 5.0 Blocks - Layout Elements
  13. 6.0 Blocks - Widgets
  14. --------------------------------------------------------------*/
  15. /*--------------------------------------------------------------
  16. 1.0 General Typography
  17. --------------------------------------------------------------*/
  18. .edit-post-visual-editor .editor-block-list__block,
  19. .edit-post-visual-editor .editor-block-list__block p,
  20. .editor-default-block-appender textarea.editor-default-block-appender__content {
  21. font-family: Karla, sans-serif;
  22. font-size: 16px;
  23. line-height: 1.6;
  24. }
  25. .edit-post-visual-editor .editor-block-list__block {
  26. color: #333;
  27. }
  28. @media screen and (min-width: 768px) {
  29. .edit-post-visual-editor .editor-block-list__block,
  30. .edit-post-visual-editor .editor-block-list__block p,
  31. .editor-default-block-appender textarea.editor-default-block-appender__content {
  32. font-size: 18px;
  33. }
  34. }
  35. /* Title */
  36. .editor-post-title__block .editor-post-title__input {
  37. clear: both;
  38. font-size: 32px;
  39. font-weight: bold;
  40. font-family: Karla, sans-serif;
  41. }
  42. @media screen and (min-width: 768px) {
  43. .editor-post-title__block .editor-post-title__input {
  44. font-size: 42px;
  45. }
  46. }
  47. /* Headings */
  48. .edit-post-visual-editor h1,
  49. .edit-post-visual-editor h2,
  50. .edit-post-visual-editor h3,
  51. .edit-post-visual-editor h4,
  52. .edit-post-visual-editor h5,
  53. .edit-post-visual-editor h6 {
  54. clear: both;
  55. font-weight: bold;
  56. font-family: Karla, sans-serif;
  57. text-transform: uppercase;
  58. }
  59. .edit-post-visual-editor h1 {
  60. font-size: 32px;
  61. }
  62. .edit-post-visual-editor h2 {
  63. font-size: 30px;
  64. }
  65. .edit-post-visual-editor h3 {
  66. font-size: 26px;
  67. }
  68. .edit-post-visual-editor h4 {
  69. font-size: 18px;
  70. }
  71. .edit-post-visual-editor h5 {
  72. font-size: 16px;
  73. }
  74. .edit-post-visual-editor h6 {
  75. font-size: 14px;
  76. }
  77. .edit-post-visual-editor h1.editor-post-title {
  78. text-transform: none;
  79. }
  80. @media screen and (min-width: 768px) {
  81. .edit-post-visual-editor h1 {
  82. font-size: 42px;
  83. }
  84. .edit-post-visual-editor h2 {
  85. font-size: 32px;
  86. }
  87. .edit-post-visual-editor h3 {
  88. font-size: 30px;
  89. }
  90. .edit-post-visual-editor h4 {
  91. font-size: 26px;
  92. }
  93. .edit-post-visual-editor h5 {
  94. font-size: 20px;
  95. }
  96. .edit-post-visual-editor h6 {
  97. font-size: 16px;
  98. }
  99. }
  100. /* Paragraphs */
  101. .edit-post-visual-editor p {
  102. margin: .8em 0;
  103. }
  104. .edit-post-visual-editor blockquote p {
  105. margin: .8em 0;
  106. }
  107. /*--------------------------------------------------------------
  108. 2.0 General Block Styles
  109. --------------------------------------------------------------*/
  110. /* Main column width */
  111. .wp-block {
  112. max-width: 715px; /* 685px + 30px to account for padding */
  113. }
  114. /* Alignments */
  115. .alignleft {
  116. display: inline;
  117. float: left;
  118. margin: .8em 1.6em .8em 0;
  119. }
  120. .alignright {
  121. display: inline;
  122. float: right;
  123. margin: .8em 0 .8em 1.6em;
  124. }
  125. .aligncenter {
  126. margin-left: auto;
  127. margin-right: auto;
  128. }
  129. .wp-block-columns.alignfull,
  130. .wp-block-latest-comments.alignfull,
  131. .editor-block-list__block[data-align="full"] .wp-block-file {
  132. padding-left: 1.6em;
  133. padding-right: 1.6em;
  134. }
  135. /* Link styles */
  136. .edit-post-visual-editor a,
  137. .editor-block-list__block a,
  138. .wp-block-freeform.block-library-rich-text__tinymce a {
  139. color: #6636cc;
  140. font-weight: bold;
  141. text-decoration: none;
  142. transition: 0.3s;
  143. }
  144. .edit-post-visual-editor a:hover,
  145. .edit-post-visual-editor a:focus,
  146. .edit-post-visual-editor a:active,
  147. .editor-block-list__block a:hover,
  148. .editor-block-list__block a:focus,
  149. .editor-block-list__block a:active,
  150. .wp-block-freeform.block-library-rich-text__tinymce a:hover,
  151. .wp-block-freeform.block-library-rich-text__tinymce a:focus,
  152. .wp-block-freeform.block-library-rich-text__tinymce a:active {
  153. color: #85cc36;
  154. }
  155. /* List styles */
  156. .block-library-list .editor-rich-text__tinymce {
  157. margin: 0;
  158. padding: 0;
  159. }
  160. .edit-post-visual-editor ul:not(.wp-block-gallery),
  161. .editor-block-list__block ul:not(.wp-block-gallery),
  162. .block-library-list ul {
  163. list-style: disc;
  164. }
  165. .edit-post-visual-editor ol,
  166. .editor-block-list__block ol,
  167. .block-library-list ol.editor-rich-text__tinymce {
  168. list-style: decimal;
  169. }
  170. .edit-post-visual-editor ul:not(.wp-block-gallery) li > ul,
  171. .editor-block-list__block ul:not(.wp-block-gallery) li > ul,
  172. .block-library-list li > ul,
  173. .edit-post-visual-editor li > ol,
  174. .editor-block-list__block li > ol,
  175. .block-library-list li > ol {
  176. margin-bottom: 0;
  177. margin-left: 1.6em;
  178. }
  179. .rtl .edit-post-visual-editor ul:not(.wp-block-gallery),
  180. .rtl .editor-block-list__block ul:not(.wp-block-gallery),
  181. .rtl .block-library-list ul,
  182. .rtl .edit-post-visual-editor ol,
  183. .rtl .editor-block-list__block ol,
  184. .rtl .block-library-list ol.editor-rich-text__tinymce {
  185. margin-left: 0;
  186. margin-right: 1.6em;
  187. padding: 0;
  188. }
  189. /* Captions */
  190. [class^="wp-block-"] figcaption {
  191. font-size: inherit;
  192. font-style: italic;
  193. text-align: center;
  194. }
  195. [class^="wp-block-"]:not(.wp-block-gallery) figcaption {
  196. color: inherit;
  197. }
  198. /* Definition List styles */
  199. .wp-block-freeform.block-library-rich-text__tinymce dt {
  200. font-weight: bold;
  201. }
  202. /*--------------------------------------------------------------
  203. 3.0 Blocks - Common Blocks
  204. --------------------------------------------------------------*/
  205. /* Paragraph */
  206. .wp-block-paragraph.has-drop-cap:not(:focus)::first-letter {
  207. font-size: 130px;
  208. }
  209. /* Quote */
  210. .editor-block-list__block .wp-block-quote:not(.is-large):not(.is-style-large) {
  211. margin: 0 1.6em;
  212. border: 0;
  213. padding: 0;
  214. }
  215. .editor-block-list__block .wp-block-quote {
  216. font-size: 26px;
  217. font-style: normal;
  218. font-weight: bold;
  219. margin: 0 1.6em 1.6em;
  220. }
  221. .edit-post-visual-editor .editor-block-list__block blockquote p {
  222. font-size: 26px;
  223. }
  224. .editor-block-list__block .wp-block-quote__citation {
  225. font-style: italic;
  226. font-size: inherit;
  227. color: inherit;
  228. }
  229. .rtl .editor-block-list__block .wp-block-quote:not(.is-large):not(.is-style-large) {
  230. }
  231. .rtl .editor-block-list__block .wp-block-quote {
  232. }
  233. .editor-block-list__block .wp-block-quote em,
  234. .editor-block-list__block .wp-block-quote i {
  235. font-style: normal;
  236. }
  237. .editor-block-list__block .wp-block-quote > :last-child {
  238. margin-bottom: 0;
  239. }
  240. .editor-block-list__block .wp-block-quote.alignleft {
  241. margin: .8em 1.6em .8em 0;
  242. }
  243. .editor-block-list__block .wp-block-quote.alignright {
  244. margin: .8em 0 .8em 1.6em;
  245. }
  246. .editor-block-list__block .wp-block-quote.aligncenter {
  247. margin-bottom: .8em;
  248. }
  249. .rtl .editor-block-list__block .wp-block-quote:not(.is-large):not(.is-style-large).alignleft,
  250. .rtl .editor-block-list__block .wp-block-quote:not(.is-large):not(.is-style-large).alignright {
  251. }
  252. .wp-block-quote.is-large,
  253. .wp-block-quote.is-style-large {
  254. font-size: 32px;
  255. font-style: normal;
  256. margin: 0 .8em .8em;
  257. padding: 0;
  258. }
  259. .edit-post-visual-editor .editor-block-list__block .wp-block-quote.is-large,
  260. .edit-post-visual-editor .editor-block-list__block .wp-block-quote.is-style-large,
  261. .edit-post-visual-editor .editor-block-list__block .wp-block-quote.is-large p,
  262. .edit-post-visual-editor .editor-block-list__block .wp-block-quote.is-style-large p {
  263. font-size: 32px;
  264. }
  265. .editor-block-list__block .wp-block-quote.is-large p,
  266. .editor-block-list__block .wp-block-quote.is-style-large p {
  267. margin-bottom: .4em;
  268. font-style: normal;
  269. }
  270. /* Cover */
  271. .edit-post-visual-editor .editor-block-list__block .wp-block-cover-image .wp-block-cover-image-text,
  272. .edit-post-visual-editor .editor-block-list__block .wp-block-cover-image .wp-block-cover-text,
  273. .edit-post-visual-editor .editor-block-list__block .wp-block-cover-image h2,
  274. .edit-post-visual-editor .editor-block-list__block .wp-block-cover .wp-block-cover-image-text,
  275. .edit-post-visual-editor .editor-block-list__block .wp-block-cover .wp-block-cover-text,
  276. .edit-post-visual-editor .editor-block-list__block .wp-block-cover h2 {
  277. font-size: 2.0em; /* Cover images inherit the paragraph size; this resets it */
  278. }
  279. /* File */
  280. .wp-block-file__textlink {
  281. color: #6636cc;
  282. font-weight: bold;
  283. }
  284. .wp-block-file .wp-block-file__button {
  285. border: 2px solid;
  286. border-color: #6636cc;
  287. border-radius: 10px;
  288. background: transparent;
  289. box-shadow: none;
  290. color: #6636cc;
  291. font-weight: bold;
  292. font-size: 16px;
  293. font-size: 1rem;
  294. letter-spacing: 1px;
  295. line-height: 1;
  296. padding: 0.8em 1.6em 0.8em;
  297. text-shadow: none;
  298. text-decoration: none;
  299. text-transform: uppercase;
  300. transition: 0.3s;
  301. }
  302. .wp-block-button .editor-rich-text__tinymce.mce-content-body {
  303. line-height: 16px;
  304. }
  305. /*--------------------------------------------------------------
  306. 4.0 Blocks - Formatting
  307. --------------------------------------------------------------*/
  308. /* Verse */
  309. .wp-block-verse pre {
  310. background: transparent;
  311. color: inherit;
  312. font-family: inherit;
  313. font-size: inherit;
  314. font-style: italic;
  315. line-height: inherit;
  316. margin-bottom: 1.6em;
  317. max-width: 100%;
  318. overflow: auto;
  319. padding: 0;
  320. }
  321. /* Code */
  322. .wp-block-code {
  323. background: rgba(0, 0, 0, 0.02);
  324. border: 0;
  325. border-radius: 0;
  326. font-family: "Courier 10 Pitch", Courier, monospace;
  327. font-size: 15px;
  328. font-size: 0.9375rem;
  329. line-height: 1.6;
  330. margin-bottom: 1.6em;
  331. max-width: 100%;
  332. overflow: auto;
  333. padding: 1.6em;
  334. }
  335. .wp-block-code textarea {
  336. background: transparent;
  337. }
  338. /* Classic */
  339. .wp-block-freeform.block-library-rich-text__tinymce address {
  340. margin-top: 0.8em;
  341. margin-bottom: 0.8em;
  342. }
  343. .wp-block-freeform.block-library-rich-text__tinymce ol {
  344. list-style: decimal;
  345. margin-left: 3em;
  346. padding: 0;
  347. }
  348. .wp-block-freeform.block-library-rich-text__tinymce li > ol {
  349. margin-left: 1.6em;
  350. }
  351. .wp-block-freeform.block-library-rich-text__tinymce blockquote {
  352. border: 0;
  353. font-size: 26px;
  354. font-style: normal;
  355. font-weight: bold;
  356. margin: 0 1.6em 1.6em;
  357. }
  358. .wp-block-freeform.block-library-rich-text__tinymce blockquote p {
  359. }
  360. .wp-block-freeform.block-library-rich-text__tinymce blockquote > :last-child {
  361. margin-bottom: 0;
  362. }
  363. .editor-block-list__block .wp-block-freeform.block-library-rich-text__tinymce blockquote:not(.alignleft):not(.alignright) {
  364. }
  365. .wp-block-freeform.block-library-rich-text__tinymce blockquote cite {
  366. font-style: italic;
  367. text-transform: none;
  368. }
  369. .rtl .wp-block-freeform.block-library-rich-text__tinymce blockquote {
  370. margin-right: 0;
  371. padding-left: 0;
  372. padding-right: 1.6em;
  373. }
  374. .rtl .wp-block-freeform.block-library-rich-text__tinymce .alignleft {
  375. float: left;
  376. }
  377. .rtl .wp-block-freeform.block-library-rich-text__tinymce .alignright {
  378. float: right;
  379. }
  380. .rtl .wp-block-freeform.block-library-rich-text__tinymce blockquote.alignleft {
  381. margin: .8em 1.6em .8em 0;
  382. }
  383. .rtl .wp-block-freeform.block-library-rich-text__tinymce blockquote.alignright {
  384. margin: .8em 0 .8em 1.6em;
  385. }
  386. .wp-block-freeform.block-library-rich-text__tinymce h1,
  387. .wp-block-freeform.block-library-rich-text__tinymce h2,
  388. .wp-block-freeform.block-library-rich-text__tinymce h3,
  389. .wp-block-freeform.block-library-rich-text__tinymce h4,
  390. .wp-block-freeform.block-library-rich-text__tinymce h5,
  391. .wp-block-freeform.block-library-rich-text__tinymce h6 {
  392. clear: both;
  393. font-weight: bold;
  394. font-family: Karla, sans-serif;
  395. text-transform: uppercase;
  396. }
  397. .wp-block-freeform.block-library-rich-text__tinymce h1 {
  398. font-size: 32px;
  399. }
  400. .wp-block-freeform.block-library-rich-text__tinymce h2 {
  401. font-size: 30px;
  402. }
  403. .wp-block-freeform.block-library-rich-text__tinymce h3 {
  404. font-size: 26px;
  405. }
  406. .wp-block-freeform.block-library-rich-text__tinymce h4 {
  407. font-size: 18px;
  408. }
  409. .wp-block-freeform.block-library-rich-text__tinymce h5 {
  410. font-size: 16px;
  411. }
  412. .wp-block-freeform.block-library-rich-text__tinymce h6 {
  413. font-size: 14px;
  414. }
  415. @media screen and (min-width: 768px) {
  416. .wp-block-freeform.block-library-rich-text__tinymce h1 {
  417. font-size: 42px;
  418. }
  419. .wp-block-freeform.block-library-rich-text__tinymce h2 {
  420. font-size: 32px;
  421. }
  422. .wp-block-freeform.block-library-rich-text__tinymce h3 {
  423. font-size: 30px;
  424. }
  425. .wp-block-freeform.block-library-rich-text__tinymce h4 {
  426. font-size: 26px;
  427. }
  428. .wp-block-freeform.block-library-rich-text__tinymce h5 {
  429. font-size: 20px;
  430. }
  431. .wp-block-freeform.block-library-rich-text__tinymce h6 {
  432. font-size: 16px;
  433. }
  434. }
  435. .wp-block-freeform.block-library-rich-text__tinymce pre {
  436. background: rgba(0, 0, 0, 0.02);
  437. font-family: "Courier 10 Pitch", Courier, monospace;
  438. font-size: 15px;
  439. font-size: 0.9375rem;
  440. line-height: 1.6;
  441. margin-bottom: 1.6em;
  442. max-width: 100%;
  443. overflow: auto;
  444. padding: 1.6em;
  445. }
  446. .wp-block-freeform.block-library-rich-text__tinymce table {
  447. border-collapse: collapse;
  448. border: 0;
  449. background-color: rgba(0, 0, 0, 0.02);
  450. width: 100%;
  451. margin: 0 0 1.6em;
  452. }
  453. .wp-block-freeform.block-library-rich-text__tinymce .alternate {
  454. background: transparent;
  455. }
  456. .wp-block-freeform.block-library-rich-text__tinymce table td {
  457. padding: 8px 5px;
  458. border: 0;
  459. }
  460. .wp-block-freeform.block-library-rich-text__tinymce table th {
  461. border: 0;
  462. padding: 8px 5px;
  463. font-weight: bold;
  464. text-align: center;
  465. }
  466. /* Preformatted */
  467. .editor-block-list__block .wp-block-preformatted pre {
  468. background: rgba(0, 0, 0, 0.02);
  469. font-family: "Courier 10 Pitch", Courier, monospace;
  470. font-size: 15px;
  471. font-size: 0.9375rem;
  472. line-height: 1.6;
  473. margin-bottom: 1.6em;
  474. max-width: 100%;
  475. overflow: auto;
  476. padding: 1.6em;
  477. }
  478. /* Pullquote */
  479. .editor-block-list__block .wp-block-pullquote blockquote {
  480. margin: 0;
  481. padding: 0;
  482. border: 0;
  483. }
  484. .edit-post-visual-editor .wp-block-pullquote p {
  485. font-size: 24px;
  486. }
  487. .wp-block-pullquote {
  488. border-top: 2px solid currentColor;
  489. border-bottom: 2px solid currentColor;
  490. font-style: italic;
  491. font-size: 24px;
  492. font-weight: bold;
  493. margin: 0 0 1.6em;
  494. padding: .8em 0;
  495. }
  496. .wp-block-pullquote blockquote {
  497. font-size: 24px;
  498. }
  499. .wp-block-pullquote.alignfull blockquote {
  500. padding-left: 1.6em;
  501. padding-right: 1.6em;
  502. }
  503. .wp-block-pullquote.alignleft {
  504. margin-right: 1.6em;
  505. }
  506. .wp-block-pullquote.alignright {
  507. margin-left: 1.6em;
  508. }
  509. .wp-block-pullquote blockquote > .editor-rich-text p {
  510. font-size: 24px;
  511. margin-bottom: .8em;
  512. }
  513. .wp-block-pullquote.alignleft blockquote > .editor-rich-text p,
  514. .wp-block-pullquote.alignright blockquote > .editor-rich-text p {
  515. font-size: 24px;
  516. }
  517. .wp-block-pullquote__citation,
  518. .wp-block-pullquote cite,
  519. .wp-block-pullquote footer {
  520. font-style: normal;
  521. font-size: 18px;
  522. text-transform: none;
  523. }
  524. /* Table */
  525. .editor-block-list__block .wp-block-table__cell-content {
  526. padding: 0;
  527. }
  528. .editor-block-list__block table.wp-block-table {
  529. border-collapse: collapse;
  530. border: 0;
  531. background-color: rgba(0, 0, 0, 0.02);
  532. width: 100%;
  533. margin: 0 0 1.6em;
  534. }
  535. .editor-block-list__block table.wp-block-table td {
  536. border: 0;
  537. padding: 8px 5px;
  538. }
  539. .editor-block-list__block table.wp-block-table th {
  540. border: 0;
  541. padding: 8px 5px;
  542. font-weight: bold;
  543. text-align: center;
  544. }
  545. /*--------------------------------------------------------------
  546. 5.0 Blocks - Layout Elements
  547. --------------------------------------------------------------*/
  548. /* Buttons */
  549. .wp-block-button .wp-block-button__link {
  550. border: 2px solid currentColor;
  551. box-shadow: none;
  552. font-weight: bold;
  553. font-size: 16px;
  554. font-size: 1rem;
  555. letter-spacing: 1px;
  556. line-height: 1;
  557. padding: 0.8em 1.6em 0.8em;
  558. text-shadow: none;
  559. text-decoration: none;
  560. text-transform: uppercase;
  561. transition: 0.3s;
  562. }
  563. .wp-block-button__link {
  564. background: #6636cc;
  565. border-radius: 10px;
  566. color: #fff;
  567. }
  568. .is-style-outline .wp-block-button__link:not(.has-text-color) {
  569. color: #6636cc;
  570. }
  571. /* Separator */
  572. .wp-block-separator {
  573. background-color: #ddd;
  574. border: 0;
  575. height: 1.1px; /* To work around odd issue in Firefox */
  576. margin-bottom: 1.6em;
  577. }
  578. /*--------------------------------------------------------------
  579. 6.0 Blocks - Widgets
  580. --------------------------------------------------------------*/
  581. /* General Widget styles */
  582. .edit-post-visual-editor [data-align="center"] .wp-block-categories__list,
  583. .edit-post-visual-editor [data-align="center"] .wp-block-archives,
  584. .edit-post-visual-editor [data-align="center"] .wp-block-lastest-posts {
  585. list-style-position: inside;
  586. }
  587. /* Categories */
  588. .editor-block-list__block[data-align=right] .wp-block-categories__list,
  589. .editor-block-list__block[data-align=left] .wp-block-categories__list {
  590. padding: 0;
  591. }
  592. /* Latest Comments */
  593. .editor-block-list__block .wp-block-latest-comments,
  594. .rtl .editor-block-list__block .wp-block-latest-comments {
  595. margin-left: 0;
  596. margin-right: 0;
  597. }
  598. .wp-block-latest-comments__comment-meta,
  599. .wp-block-latest-comments__comment-excerpt p {
  600. font-size: 16px;
  601. }
  602. .wp-block-latest-comments__comment-date {
  603. font-size: 14px;
  604. }
  605. @media screen and (min-width: 768px) {
  606. .wp-block-latest-comments__comment-meta,
  607. .wp-block-latest-comments__comment-excerpt p {
  608. font-size: 18px;
  609. }
  610. }
  611. .editor-block-list__block .wp-block-latest-comments__comment-meta a {
  612. box-shadow: none;
  613. font-weight: 700;
  614. text-decoration: none;
  615. }
  616. .wp-block-latest-comments .wp-block-latest-comments__comment {
  617. border-top: 1px solid #dddddd;
  618. margin-bottom: 0;
  619. padding: .8em 0;
  620. }
  621. .wp-block-latest-comments__comment-excerpt p:last-child {
  622. margin-bottom: 0;
  623. }
  624. /* Latest Posts */
  625. .edit-post-visual-editor .wp-block-latest-posts.is-grid {
  626. list-style: none;
  627. margin-left: 0;
  628. margin-right: 0;
  629. }
  630. .edit-post-visual-editor .wp-block-latest-posts.is-grid li {
  631. margin-bottom: 1em;
  632. }