Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. .dumb {
  2. border-radius: 10px;
  3. height:100px;
  4. background-color:gainsboro;
  5.  
  6. }
  7. .row{
  8. display:flex;
  9. width:100%;
  10. background-color: gainsboro
  11. }
  12. .row::after{
  13. display: block;
  14. clear:both;
  15. content: "";
  16. }
  17. .col-1 {width: 8.33%;}
  18. .col-2 {width: 16.66%;}
  19. .col-3 {width: 25%;}
  20. .col-4 {width: 33.33%;}
  21. .col-5 {width: 41.66%;}
  22. .col-6 {width: 50%;}
  23. .col-7 {width: 58.33%;}
  24. .col-8 {width: 66.66%;}
  25. .col-9 {width: 75%;}
  26. .col-10 {width: 83.33%;}
  27. .col-11 {width: 91.66%;}
  28. .col-12 {width: 100%;}
  29. *{
  30. box-sizing: :border-box;
  31. }
  32. [class*= "col-"]{
  33. padding: px;
  34.  
  35. }
  36. h1{
  37. text-align: center;
  38. color: limegreen;
  39. background-color:grey;
  40. margin:1px;
  41. display:block;
  42. }
  43. h2{
  44. text-align: center;
  45. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement