Преглед изворни кода

Italicize blockquoted text by default (since I like that)

teo greenwood пре 11 година
родитељ
комит
f466ca8d2a
1 измењених фајлова са 6 додато и 2 уклоњено
  1. 6 2
      css/structure.css

+ 6 - 2
css/structure.css

@@ -1,7 +1,6 @@
 /*First, we start off with specifying what parts of the DOM we want hidden*/
-/*Make sure it uses !important so that any JS helper for responsiveness doesn't override this*/
 #leftbar, #rightbar, #footbar, #midtitle {
- display: none !important;
+ display: none;
 }
 
 /*Now, on to positioning of the elements*/
@@ -89,3 +88,8 @@ body {
  width: 80%;
  display: table-cell;
 }
+
+/*Some CSS rules below that I actually want to load on both print and screen views*/
+blockquote {
+  font-style: italic;
+}