Bläddra i källkod

Re-added customized reset values

Daniel Jost 12 år sedan
förälder
incheckning
712fc4b752
1 ändrade filer med 36 tillägg och 0 borttagningar
  1. 36 0
      library/scss/_normalize.scss

+ 36 - 0
library/scss/_normalize.scss

@@ -404,3 +404,39 @@ table {
     border-collapse: collapse;
     border-spacing: 0;
 }
+
+/******************************************************************
+CUSTOMIZED RESET VALUES
+I added these extra styles as a more personalized reset. Feel free
+to remove them if you like or add your own. If you want to update
+the normalize styles, make sure to edit from this point up.
+******************************************************************/
+
+// proper formatting (http://blog.fontdeck.com/post/9037028497/hyphens) 
+p {
+   -webkit-hyphens: auto;
+   -epub-hyphens:   auto;
+   -moz-hyphens:    auto;
+   hyphens:         auto;
+}
+
+b, strong, .strong { font-weight: bold; }
+
+dfn, em, .em { font-style: italic; }
+
+small, .small { font-size: 75%; }
+
+ul, ol {
+        padding: 0;
+        list-style-type: none;
+}
+
+dd {
+        margin: 0;
+}
+
+.sidebar ul,
+.sidebar ol,
+.commentlist {
+        list-style: none;
+}