Advertisement
Guest User

Untitled

a guest
Nov 23rd, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  1. @import "partials/reset";
  2. //@import "partials/gridEight"; // < GRID 8 [!]
  3.  
  4. $defaultHeight: 50px;
  5.  
  6. //GRID 12 \/
  7. * { box-sizing: border-box; }
  8.  
  9. // div[class^="col-"] { padding: 15px;}
  10.  
  11. main {
  12. margin: 15px 5px;
  13. }
  14.  
  15. .grid-container {
  16. width: 100%;
  17. max-width: 1500px;
  18. margin: 0 auto;
  19.  
  20. .row {
  21. &::after {
  22. content: "";
  23. clear: both;
  24. display: table;
  25. }
  26.  
  27.  
  28. .col-1 { width: 8.33%; }
  29. .col-2 { width: 16.66%; }
  30. .col-3 { width: 24.99%; }
  31. .col-4 { width: 33.33%; }
  32. .col-5 { width: 41.66%; }
  33. .col-6 { width: 49.99%; }
  34. .col-7 { width: 58.32%; }
  35. .col-8 { width: 66.65%; }
  36. .col-9 { width: 74.98%; }
  37. .col-10 { width: 83.31%; }
  38. .col-11 { width: 91.64%; }
  39. .col-12 { width: 100%; }
  40. }
  41. }
  42.  
  43. [class^="col-"] {
  44. float: left;
  45. min-height: 1px;
  46. }
  47.  
  48. .header {
  49. background-color: lighten(purple, 10%);
  50. height: $defaultHeight * 2;
  51. }
  52.  
  53. .left-section {
  54. background-color: aqua;
  55. height: 0.7 * $defaultHeight;
  56. margin-bottom: 10px;
  57. }
  58.  
  59. .center-section {
  60. background-color: yellow;
  61. height: 5 * $defaultHeight;
  62. }
  63.  
  64. .right-section {
  65. background-color: aqua;
  66. height: 5 * $defaultHeight;
  67. }
  68.  
  69. .footer {
  70. background-color: darken(aqua, 10%);
  71. height: $defaultHeight;
  72. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement