editor-style.css 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453
  1. /*--------------------------------------------------------------
  2. # Normalize
  3. --------------------------------------------------------------*/
  4. a {
  5. background-color: transparent;
  6. }
  7. a:active,
  8. a:hover {
  9. outline: 0;
  10. }
  11. abbr[title] {
  12. border-bottom: 1px dotted;
  13. }
  14. b,
  15. strong {
  16. font-weight: bold;
  17. }
  18. dfn {
  19. font-style: italic;
  20. }
  21. h1 {
  22. font-size: 2em;
  23. margin: 0.67em 0;
  24. }
  25. mark {
  26. background: #ff0;
  27. color: #404040;
  28. }
  29. small {
  30. font-size: 13px;
  31. }
  32. sub,
  33. sup {
  34. font-size: 75%;
  35. line-height: 0;
  36. position: relative;
  37. vertical-align: baseline;
  38. }
  39. sup {
  40. top: -0.5em;
  41. }
  42. sub {
  43. bottom: -0.25em;
  44. }
  45. img {
  46. border: 0;
  47. }
  48. svg:not(:root) {
  49. overflow: hidden;
  50. }
  51. figure {
  52. margin: 1em 0;
  53. }
  54. hr {
  55. box-sizing: content-box;
  56. height: 0;
  57. }
  58. pre {
  59. overflow: auto;
  60. }
  61. code,
  62. kbd,
  63. pre,
  64. samp {
  65. font-family: monospace, monospace;
  66. font-size: 1em;
  67. }
  68. button,
  69. input,
  70. optgroup,
  71. select,
  72. textarea {
  73. color: inherit;
  74. font: inherit;
  75. margin: 0;
  76. }
  77. optgroup {
  78. font-weight: bold;
  79. }
  80. table {
  81. border-collapse: collapse;
  82. border-spacing: 0;
  83. }
  84. td,
  85. th {
  86. padding: 0;
  87. }
  88. /*--------------------------------------------------------------
  89. # Typography
  90. --------------------------------------------------------------*/
  91. html .mceContentBody {
  92. max-width: 739px;
  93. }
  94. body.mceContentBody {
  95. color: #404040;
  96. font-family: "Libre Baskerville", Libre 2, Georgia, Times, serif;
  97. font-size: 18px;
  98. font-size: 1rem;
  99. line-height: 1.75;
  100. }
  101. h1,
  102. h2,
  103. h3,
  104. h4,
  105. h5,
  106. h6 {
  107. clear: both;
  108. font-family: "Libre Baskerville", Libre 2, Georgia, Times, serif;
  109. font-weight: bold;
  110. margin: 0 0 .875em;
  111. }
  112. h1 {
  113. font-size: 29px;
  114. font-size: 1.8125rem;
  115. line-height: 1.3;
  116. }
  117. h2 {
  118. font-size: 23px;
  119. font-size: 1.4375rem;
  120. }
  121. h3 {
  122. font-size: 18px;
  123. font-size: 1rem;
  124. }
  125. h4 {
  126. font-size: 14px;
  127. font-size: .875rem;
  128. }
  129. h5 {
  130. font-size: 13px;
  131. font-size: .8125rem;
  132. }
  133. h6 {
  134. font-size: 12px;
  135. font-size: .75rem;
  136. }
  137. p {
  138. margin-top: 0;
  139. margin-bottom: 1.75em;
  140. }
  141. dfn,
  142. cite,
  143. em,
  144. i {
  145. font-style: italic;
  146. }
  147. blockquote {
  148. margin: 0 1.75em 1.75em 2.25em;
  149. font-size: 18px;
  150. }
  151. address {
  152. margin: 0 0 1.75em;
  153. }
  154. pre {
  155. font-family: "Libre Baskerville", Libre 2, Georgia, Times, serif;
  156. margin-bottom: 1.75em;
  157. max-width: 100%;
  158. overflow: auto;
  159. }
  160. code,
  161. kbd,
  162. tt,
  163. var {
  164. font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  165. font-size: 16px;
  166. }
  167. abbr,
  168. acronym {
  169. border-bottom: 1px dotted #666;
  170. cursor: help;
  171. }
  172. mark,
  173. ins {
  174. background: #fff9c0;
  175. text-decoration: none;
  176. }
  177. big {
  178. font-size: 125%;
  179. }
  180. /*--------------------------------------------------------------
  181. # Elements
  182. --------------------------------------------------------------*/
  183. html {
  184. box-sizing: border-box;
  185. }
  186. body {
  187. background: #fff; /* Fallback for when there is no custom background color defined. */
  188. }
  189. blockquote:before,
  190. blockquote:after,
  191. q:before,
  192. q:after {
  193. content: "";
  194. }
  195. blockquote,
  196. q {
  197. quotes: "" "";
  198. }
  199. blockquote {
  200. position: relative;
  201. }
  202. blockquote:before {
  203. content: "\201c";
  204. display: block;
  205. font-size: 72px;
  206. line-height: 1;
  207. position: absolute;
  208. top: 0;
  209. left: -.6em;
  210. }
  211. blockquote blockquote {
  212. margin-right: 0;
  213. }
  214. blockquote.alignleft,
  215. blockquote.alignright {
  216. max-width: 47%;
  217. }
  218. blockquote.alignleft,
  219. blockquote.aligncenter {
  220. margin-left: 2em;
  221. }
  222. blockquote.alignright {
  223. margin-left: 3.5em;
  224. }
  225. .comments-area blockquote {
  226. font-size: 18px;
  227. }
  228. .intro {
  229. font-style: italic;
  230. font-size: 23px;
  231. }
  232. hr {
  233. background-color: #404040;
  234. border: 0;
  235. height: 1px;
  236. margin-bottom: 1.75em;
  237. }
  238. ul,
  239. ol {
  240. margin: 0 0 1.75em 0;
  241. padding-left: 1.75em;
  242. }
  243. ul {
  244. list-style: disc;
  245. }
  246. ol {
  247. list-style: decimal;
  248. }
  249. li > ul,
  250. li > ol {
  251. margin-bottom: 0;
  252. margin-left: .4375em;
  253. }
  254. dt {
  255. font-weight: bold;
  256. }
  257. dd {
  258. margin: 0 1.75em 1.75em;
  259. }
  260. img {
  261. height: auto; /* Make sure images are scaled correctly. */
  262. max-width: 100%; /* Adhere to container width. */
  263. }
  264. table {
  265. margin: 0 0 1.75em;
  266. width: 100%;
  267. }
  268. td {
  269. padding: 3px;
  270. }
  271. caption {
  272. font-weight: bold;
  273. padding: .4375em 0;
  274. }
  275. /*--------------------------------------------------------------
  276. ## Captions
  277. --------------------------------------------------------------*/
  278. .wp-caption {
  279. max-width: 100%;
  280. padding: 0;
  281. margin-bottom: 1.75em;
  282. }
  283. .wp-caption img[class*="wp-image-"] {
  284. display: block;
  285. margin: 0 auto;
  286. }
  287. .wp-caption-dd {
  288. font-size: 14px;
  289. font-style: italic;
  290. position: relative;
  291. }
  292. .wp-caption-dd:before {
  293. content: "\2014";
  294. font-style: normal;
  295. position: absolute;
  296. top: 0;
  297. left: -1.75em;
  298. }
  299. .wp-caption .wp-caption-dd {
  300. margin: 0.8075em 0;
  301. }
  302. /*--------------------------------------------------------------
  303. # Alignments
  304. --------------------------------------------------------------*/
  305. .alignleft {
  306. display: inline;
  307. float: left;
  308. margin: .875em 1.75em .875em 0 !important;
  309. }
  310. .alignright {
  311. display: inline;
  312. float: right;
  313. margin: .875em 0 .875em 1.75em !important;
  314. }
  315. .aligncenter {
  316. clear: both;
  317. display: block;
  318. margin: .875em auto !important;
  319. }
  320. /*--------------------------------------------------------------
  321. ## Galleries
  322. --------------------------------------------------------------*/
  323. .gallery {
  324. margin-bottom: 1.75em;
  325. }
  326. .gallery-item {
  327. display: inline-block;
  328. padding: 0.4375em;
  329. margin: 0;
  330. text-align: center;
  331. vertical-align: top;
  332. width: 100%;
  333. }
  334. .gallery-columns-2 .gallery-item {
  335. max-width: 50%;
  336. }
  337. .gallery-columns-3 .gallery-item {
  338. max-width: 33.33%;
  339. }
  340. .gallery-columns-4 .gallery-item {
  341. max-width: 25%;
  342. }
  343. .gallery-columns-5 .gallery-item {
  344. max-width: 20%;
  345. }
  346. .gallery-columns-6 .gallery-item {
  347. max-width: 16.66%;
  348. }
  349. .gallery-columns-7 .gallery-item {
  350. max-width: 14.28%;
  351. }
  352. .gallery-columns-8 .gallery-item {
  353. max-width: 12.5%;
  354. }
  355. .gallery-columns-9 .gallery-item {
  356. max-width: 11.11%;
  357. }
  358. .gallery-caption {
  359. display: block;
  360. }
  361. @media screen and ( min-width: ) {
  362. h1,
  363. .singular .entry-title {
  364. font-size: 47px;
  365. font-size: 2.9375rem;
  366. margin: 0 0 0.4375em;
  367. }
  368. h2 {
  369. font-size: 29px;
  370. font-size: 1.8125rem;
  371. margin: 0 0 0.4375em;
  372. }
  373. h3 {
  374. font-size: 23px;
  375. font-size: 1.4375rem;
  376. }
  377. h4 {
  378. font-size: 18px;
  379. font-size: 1rem;
  380. }
  381. h5 {
  382. font-size: 14px;
  383. font-size: .875rem;
  384. }
  385. h6 {
  386. font-size: 13px;
  387. font-size: .8125rem;
  388. }
  389. }