Advertisement
Guest User

Untitled

a guest
Jul 24th, 2017
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. -- font sizes ranging from 12px - 52px,
  2. -- 10 colors
  3. -- different types of margin/padding
  4. -- different styles like uppercase, bold, thin etc etc.
  5.  
  6. .heading--s12 { font-size: 12px; }
  7. .heading--s15 { font-size: 15px; }
  8. ...
  9. .heading-blu { color: blue; }
  10. .heading-green { color: green; }
  11. ...
  12. .heading-bold { font-weight: bold; }
  13. ...
  14. .block-mtb10 { margin-top: 10px; margin-bottom: 10px; }
  15. .block-mtb20 { margin-top: 20px; margin-bottom: 20px; }
  16. ...
  17.  
  18. <h1 class="heading--s15 heading--blu">Heading 1</h1>
  19. <h1 class="heading--s15 heading--green block-mtb20">Margin top n bottom 20px</h1>
  20. <h1 class="heading--s15 heading--blu block--m20">Margin 20px</h1>
  21. <h1 class="heading--s15 heading--blu block--pt10">Padding top 10px</h1>
  22. ...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement