Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.23 KB | None | 0 0
  1. *{
  2. margin : 0;
  3. }
  4.  
  5.  
  6.  
  7. ul {
  8. padding:0;
  9. margin:0;
  10. list-style-type:none;
  11. }
  12.  
  13. li {
  14. display: inline-block;
  15. }
  16.  
  17. ul {
  18.  
  19. margin: 0;
  20. padding: 0;
  21. overflow: hidden;
  22. background-color: black;
  23. }
  24.  
  25. li {
  26. color: white;
  27. float: left;
  28. padding : 10px;
  29. }
  30.  
  31. .carousel {
  32.  
  33. width: auto;
  34. height: 150px;
  35. margin: auto;
  36. padding: 55px;
  37. background-color: lightgray;
  38. }
  39.  
  40. h2 {
  41. text-align: center;
  42. margin-bottom: 50px;
  43. margin-top: 50px;
  44. }
  45.  
  46. span {
  47. font-size: 16px;
  48. }
  49.  
  50.  
  51. article {
  52. background-color:lightgray;
  53. height : 200px;
  54. width: 80%;
  55. margin-top: 20px;
  56. margin-left: auto;
  57. margin-right: auto;
  58.  
  59. }
  60.  
  61.  
  62. hr {
  63.  
  64. margin-top: 100px ;
  65. }
  66.  
  67. h3 {
  68. text-align: center;
  69. margin-bottom: 30px;
  70. margin-top: 30px;
  71. }
  72.  
  73. div.form {
  74. display: block;
  75. text-align: center;
  76. }
  77.  
  78. form {
  79. display: inline-block;
  80. margin-left: auto;
  81. margin-right: auto;
  82. text-align: left;
  83. }
  84.  
  85. input, textarea, select, option {
  86. margin: 0;
  87. width: 500px;
  88. margin-top: 10px;
  89. }
  90.  
  91. button {
  92.  
  93. float:right;
  94. }
  95.  
  96.  
  97.  
  98. @media screen and (min-width: 961px) {
  99.  
  100. article {
  101.  
  102. height : 300px;
  103. width: 25%;
  104. padding : 15px ;
  105. margin: 20px;
  106. display: inline-block;
  107.  
  108. }
  109.  
  110. h3 {
  111.  
  112. text-align: left;
  113. margin-bottom: 30px;
  114. margin-top: 30px;
  115. }
  116.  
  117. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement