Explorar el Código

Re-added customized reset values

Daniel Jost hace 12 años
padre
commit
712fc4b752
Se han modificado 1 ficheros con 36 adiciones y 0 borrados
  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;
+}