From c21746d7ff8cc9e1946ae1cb7fd16e45c1aa50e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Ventura?= Date: Mon, 20 Feb 2017 20:59:13 +0100 Subject: [PATCH] Add basic page styles to TinyMCE demo. --- tinymce/index.html | 3 ++- tinymce/style.css | 21 +++++++++++++++++++++ 2 files changed, 23 insertions(+), 1 deletion(-) create mode 100644 tinymce/style.css diff --git a/tinymce/index.html b/tinymce/index.html index 68cc43fa49b88d..0412e538e4f690 100644 --- a/tinymce/index.html +++ b/tinymce/index.html @@ -4,8 +4,9 @@ TinyMCE Formatting Demo + - +
diff --git a/tinymce/style.css b/tinymce/style.css new file mode 100644 index 00000000000000..a4f49af8fe675a --- /dev/null +++ b/tinymce/style.css @@ -0,0 +1,21 @@ +/** + * Basic + */ + +html, +body { + margin: 0; + padding: 0; + height: 100%; +} + +* { + box-sizing: border-box; +} + +body { + font: 13px/1.8 -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen-Sans", "Ubuntu", "Cantarell", "Helvetica Neue", sans-serif; + max-width: 720px; + margin: 60px auto; + color: #12181e; +}