From 5064d55b714ad8d529e0193d2a34fbc704ecd16a Mon Sep 17 00:00:00 2001 From: Manuel Cillero Date: Wed, 14 Feb 2018 03:07:58 +0100 Subject: [PATCH] Ajuste para las citas en 'responsive' --- .../themes/circlepro/stylesheets/editor.css | 34 ++++++++++++------- 1 file changed, 21 insertions(+), 13 deletions(-) diff --git a/public/themes/circlepro/stylesheets/editor.css b/public/themes/circlepro/stylesheets/editor.css index b843b77..4a920c4 100644 --- a/public/themes/circlepro/stylesheets/editor.css +++ b/public/themes/circlepro/stylesheets/editor.css @@ -62,19 +62,6 @@ a:hover, a:focus { body.wiki, .wiki p, .wiki li { font-size: 18px; } -@media screen and (max-width: 767px) { - .wiki p, .wiki li { - text-align: left; - } - body.wiki, .wiki p, .wiki li { - font-size: 16px; - } -} -@media screen and (min-width: 768px) and (max-width: 899px) { - body.wiki, .wiki p, .wiki li { - font-size: 17px; - } -} .wiki li { margin-top: 3px; @@ -108,3 +95,24 @@ hr { background: #ccc; border: 0; } + +/* Responsive */ +@media screen and (max-width: 767px) { + .wiki p, .wiki li { + text-align: left; + } + body.wiki, .wiki p, .wiki li { + font-size: 16px; + } + blockquote, blockquote > p { + font-size: 18.5px !important; + } +} +@media screen and (min-width: 768px) and (max-width: 899px) { + body.wiki, .wiki p, .wiki li { + font-size: 17px; + } + blockquote, blockquote > p { + font-size: 21.5px !important; + } +}