From c233b2f653601170f462a92a2406831f21f2c824 Mon Sep 17 00:00:00 2001 From: Carlos Antonio da Silva Date: Wed, 7 Nov 2012 09:16:48 -0200 Subject: Fix guides home links and maintain compatibility with small screens Commit 65a2977cdd55678d3eab06434625375914511786 has introduced some changes to format content for small devices, this change reverts the original font size for normal screens while maintaing the same format for these devices. [ci skip] --- guides/assets/stylesheets/main.css | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/guides/assets/stylesheets/main.css b/guides/assets/stylesheets/main.css index f847a2f355..589c96e0e9 100644 --- a/guides/assets/stylesheets/main.css +++ b/guides/assets/stylesheets/main.css @@ -541,13 +541,19 @@ h6 { } #mainCol dt, #subCol dt { - font-size: 1em; + font-size: 1.2857em; padding: 0.125em 0 0.25em 0; margin-bottom: 0; /*background: url(../images/book_icon.gif) no-repeat left top; padding: 0.125em 0 0.25em 28px;*/ } +@media screen and (max-width: 480px) { + #mainCol dt, #subCol dt { + font-size: 1em; + } +} + #mainCol dd.work-in-progress, #subCol dd.work-in-progress { background: #fff9d8 url(../images/tab_yellow.gif) no-repeat left top; border: none; -- cgit v1.2.3