press-this-editor-rtl.css 1.34 KB
Newer Older
imac's avatar
imac committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
/*
Press This TinyMCE editor styles :)
*/


/**
* Links
*/
a {
	color: #0073aa;
}

a:visited {
	color: #0073aa;
}

a:hover,
a:focus,
a:active {
	color: #00a0d2;
}


/**
* Lists
*/
ul,
ol {
	margin: 0 3em 1.5em 0;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-right: 1.5em;
}

dt {
	font-weight: 700;
}

dd {
	margin: 0 1.5em 1.5em;
}


/**
* Media
*
* Basic image and object styles
*/
img {
	max-width: 100%;
	height: auto;
}

/* Makes sure embeds and iframes fit inside their containers */
embed,
iframe,
object {
	max-width: 100%;
}


/**
* TinyMCE styles
*
* Pretty dang good.
*/
body {
	color: #404040;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.6;
}
@media (max-width: 900px) {
	body#tinymce {
		padding-top: 30px !important;
	}
}
@media (max-width: 640px) {
	body {
		font-size: 16px;
	}
}
@media (max-width: 320px) {
	body {
		margin: 0 15px;
	}
}

#tinymce b,
#tinymce strong {
	/* overrides TinyMCE's !important. Woohoo. */
	font-weight: 700 !important;
}

blockquote {
	margin: 1em 1.5em;
	color: #9ea7af;
	font-size: em(25px);
	font-style: italic;
}
@media (max-width: 900px) {
	blockquote {
		margin: 1.5em 1em;
	}
}

ul,
ol {
	margin: 0 .75em 1.5em 0;
}