Advertisement
Guest User

Untitled

a guest
Apr 27th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. *, *:before, *:after {
  2. -moz-box-sizing: border-box;
  3. -webkit-box-sizing: border-box;
  4. box-sizing: border-box;
  5. }
  6.  
  7. html {
  8. height: 100%;
  9. font-size: 100%;
  10. }
  11.  
  12. body {
  13. font-family: 'Open Sans';
  14. color: white;
  15. min-height: 100%;
  16. }
  17.  
  18. .navbar {
  19. padding: 0.5rem;
  20. background-color: rgb(101,18,95);
  21. }
  22.  
  23. .navbar > .logo {
  24. position: relative;
  25. left: 2rem;
  26. }
  27. .container {
  28. margin: 0 auto;
  29. max-width: 64rem;
  30. }
  31. @media (min-width: 640px) {
  32. html { font-size: 112%; }
  33.  
  34. .column {
  35. float: left;
  36. padding-left: 1rem;
  37. padding-right: 1rem;
  38. }
  39.  
  40. .column.full { width: 100%; }
  41. .column.two-thirds { width: 66.7%; }
  42. .column.half { width: 50%; }
  43. .column.third { width: 33.3%; }
  44. .column.fourth { width: 25%; }
  45. .column.flow-opposite { float: right; }
  46. }
  47.  
  48. @media (min-width: 1024px) {
  49. html { font-size: 120%; }
  50. }
  51. .clearfix::before,
  52. .clearfix::after {
  53. content: " ";
  54. display: table;
  55. }
  56.  
  57. .clearfix::after {
  58. clear: both;
  59. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement