Guest User

Untitled

a guest
Oct 17th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.45 KB | None | 0 0
  1. ul{
  2. list-style: none;
  3. }
  4.  
  5. .container{
  6. width: 80%;
  7. margin: 0 auto;
  8. }
  9.  
  10. .column{
  11. box-sizing: border-box;
  12. width: 33.3333333333333333333333333333333333333333333333333333333333%;
  13. padding: 15px;
  14. }
  15.  
  16. .float-left{
  17. float: left;
  18. }
  19.  
  20. .float-right{
  21. float: right;
  22. }
  23.  
  24. .block{
  25. display: block;
  26. }
  27.  
  28. .width-40{
  29. width: 40%;
  30. }
  31.  
  32. .inline-block{
  33. display: inline-block;
  34. width: 40%;
  35. margin-left: 5%;
  36. }
  37.  
  38. .inline{
  39. display: inline;
  40. border-radius: 3px;
  41. color: orange;
  42. }
  43.  
  44. .clearfix{
  45. clear: both;
  46. }
  47.  
  48. .back-btn{
  49. top: 200px;
  50. left: 0;
  51. display: inline-block;
  52. border-radius: 3px;
  53. color: white;
  54. text-decoration: none;
  55. padding: 20px;
  56. }
  57.  
  58. .legends li *{
  59. display: inline-block;
  60. margin-right: 10px;
  61. }
  62.  
  63. .legend{
  64. width: 20px;
  65. height: 20px;
  66. }
  67.  
  68. .positions-div{
  69. width: 100%;
  70. height: 500px;
  71. }
  72.  
  73. .box{
  74. width: 100px;
  75. height: 100px;
  76. }
  77.  
  78. .relative{
  79. position: relative;
  80. }
  81.  
  82. .static{
  83. position: static;
  84. top: 100px;
  85. left: 200px;
  86. }
  87.  
  88. .absolute{
  89. position: absolute;
  90. top: 100px;
  91. left: 200px;
  92. }
  93.  
  94. .fixed{
  95. position: fixed;
  96. }
  97.  
  98. .red-bg{
  99. background: red;
  100. }
  101.  
  102. .blue-bg{
  103. background: blue;
  104. }
  105.  
  106. .green-bg{
  107. background: green;
  108. }
  109.  
  110. .black-bg{
  111. background: black;
  112. }
  113.  
  114. .red-border{
  115. border: 1px solid red;
  116. }
  117.  
  118. .blue-border{
  119. border: 1px solid blue;
  120. }
  121.  
  122. .green-border{
  123. border: 1px solid green;
  124. }
  125.  
  126. .box-model1, .box-model2{
  127. width: 300px;
  128. margin-right: 10px;
  129. padding-left: 10px;
  130. color: white;
  131. background: blue;
  132. border: 5px solid red;
  133. }
  134.  
  135. .box-model2{
  136. box-sizing: border-box;
  137. }
Add Comment
Please, Sign In to add comment