| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- /* space above title */
- .edit-post-visual-editor__post-title-wrapper {
- margin-top: 1em;
- }
-
- /* Editor Main column width */
- .wp-block {
- max-width: 805px;
- /* padding: 0 !important; */
- margin: 0 auto 0.5em auto;
- }
-
- /* Editor column width lists */
- .wp-block-post-template.is-flex-container li, .wp-block-query-loop.is-flex-container li {
- margin: 0 !important;
- }
-
- /* Editor Width of "wide" blocks */
- .wp-block[data-align='wide'] {
- max-width: 1080px;
- }
-
- /* Editor Width of "full-wide" blocks */
- .wp-block[data-align='full'] {
- max-width: none;
- }
-
- body {
- font-family: Questrial, sans-serif;
- color: #0d0d0d;
- font-size:15.2px;
- }
-
- p{
- line-height: 1.4;
- margin-top: 0;
- margin-bottom: 1em !important;
- }
- a {
- color: #a10000;
- /* leave underline to show links when editing */
- /* text-decoration: none; */
- }
- a:hover {
- cursor: pointer;
- color: black;
- }
- /* common */
- /* h1, h2, h3, h4, h5, h6 {
- display: block;
- margin-left: 0;
- margin-right: 0;
- } */
- h1 {
- font-size: 2.0736em;
- margin-top: 0.48225em;
- margin-bottom: 0.48225em;
- }
- h2 {
- font-size: 1.728em;
- margin-top: 0.83333em;
- margin-bottom: 0;
- }
- h3{
- font-size: 1.44em;
- /* margin-top: 1em; */
- margin-bottom: 1em;
- }
- h4 {
- font-size: 1.2em;
- /* margin-top: 1.33em; */
- margin-bottom: 1.2em;
- }
- h5 {
- font-size: 1.0em;
- /* margin-top: 1.6em; */
- margin-bottom: 1.44em;
- }
- h6 {
- font-size: 0.83333em;
- /* margin-top: 2em; */
- margin-bottom: 1.728em;
- }
-
- ul{
- padding: 0;
- }
-
- /* margin to indent marker */
- li {
- margin: 0 0 0.57870em 2.0736em !important;
- }
-
- /* ordered list alignment */
- ol {
- padding: inherit;
- }
-
- /* separator types */
- .editor-styles-wrapper, .wp-block-separator {
- border: none;
- /* height: 0.8em; */
- text-align: center
- }
-
- hr .wp-block-separator, .is-style-default {
- width: 15vw;
- border-top: 3px solid !important;
- border-bottom: 0 !important;
- }
-
-
- hr .wp-block-separator, .is-style-wide {
- width: 50vw;
- border-top: 3px solid;
- border-bottom: 0;
- }
-
- hr .wp-block-separator, .is-style-dots:before {
- letter-spacing: 4em;
- padding-left: 4em;
- }
-
- .wp-block-image figcaption {
- position: inherit !important;
- background: none !important;
- color: black !important;
- max-height: 5% !important;
- overflow: visible !important;
- padding: 0 !important;
- margin-bottom: 0.75em !important;
-
- }
|