Advertisement
Guest User

boot.css

a guest
Sep 19th, 2017
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.94 KB | None | 0 0
  1. /*RESET*/
  2. *, *:before, *:after{
  3. margin: 0;
  4. padding: 0;
  5. outline: 0;
  6.  
  7. font-family: ‘Open Sans’, sans-serif;
  8. font-size: 1em;
  9. font-weight: 400;
  10.  
  11. line-height: 1.2;
  12. letter-spacing: 0em;
  13. /*vertical-align: middle;*/
  14.  
  15. box-sizing: border-box;
  16. -moz-box-sizing: border-box;
  17. -webkit-box-sizing: border-box;
  18. }
  19.  
  20. body{background: #fff;}
  21. h1{font-size: 2em; font-weight: 300;}
  22. h2{font-size: 1.8em; font-weight: 400;}
  23. h1{font-size: 1.5em; font-weight: 500;}
  24. p{margin-bottom: 15px;}
  25. b,strong{font-weight: bold;}
  26. p:last-child{margin-bottom: 0;}
  27. mark{padding: 5px 10px; background-color: #eee;}
  28. ul{list-style: none;}
  29. img{/*float: left;*/ border: none; /*width: 100%;*/ max-width: 100%; vertical-align: middle;}
  30. small{font-size: 0.75em; color: #555;}
  31. a{text-decoration: none;}
  32. a img{border: 0;}
  33.  
  34. /*BOOT
  35. CONTAINER*/
  36. .container{float: left; width: 100%;}
  37. .content{width: 90%; margin: 0 5%;/* padding: 40px 0;*/}
  38. .content-page{padding: 60px 0;}
  39.  
  40. /*
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement