Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. * {
  2. box-sizing: border-box;
  3. }
  4.  
  5. html, body {
  6. width: 100%;
  7. height: 100%;
  8. }
  9.  
  10. body {
  11. -webkit-font-smoothing: antialiased;
  12. -moz-osx-font-smoothing: grayscale;
  13. }
  14.  
  15. .browsehappy {
  16. color: #000;
  17. background-color: #fff;
  18. margin: 0;
  19. padding: 20px;
  20. }
  21.  
  22. .browsehappy a {
  23. color: red;
  24. }
  25.  
  26. a {
  27. color: inherit;
  28. text-decoration: none;
  29. }
  30.  
  31. button {
  32. padding: 0;
  33. margin: 0;
  34. border: none;
  35. cursor: pointer;
  36. }
  37.  
  38. ul, li {
  39. margin: 0;
  40. padding: 0;
  41. list-style: none;
  42. }
  43.  
  44. .clearfix {
  45. &:before,
  46. &:after {
  47. content: "";
  48. display: table;
  49. }
  50. &:after {
  51. clear: both;
  52. }
  53. }
  54.  
  55. /* for IE6-7 */
  56. .clearfix {
  57. zoom: 1;
  58. }
  59.  
  60. .wrapper {
  61. position: relative;
  62. overflow: hidden;
  63. min-height: 100%;
  64. //min-width: 1100px;
  65. //&::after {
  66. // content: "";
  67. // display: block;
  68. // height: 100px;
  69. // margin-bottom: 100px;
  70. //}
  71. }
  72.  
  73. .container {
  74. height: 100%;
  75. //width:1100px;
  76. margin: 0 auto;
  77. }
  78.  
  79. .footer {
  80. position: relative;
  81. //height: 100px;
  82. //margin-top:-100px;
  83. //min-width: 1100px;
  84. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement