Advertisement
CallMeWolf

Untitled

Mar 15th, 2021
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.29 KB | None | 0 0
  1. /*CSS BEGINS*/
  2. body{
  3. color: #000;
  4. /*font-family: 'Roboto', sans-serif;*/
  5. font-size: 14px;
  6. margin: 0px;
  7. padding: 0px;
  8. background-color: #FF3CAC;
  9. background-image: linear-gradient(225deg, #FF3CAC 0%, #784BA0 50%, #2B86C5 100%);
  10. }
  11.  
  12. /* TABLE */
  13. .wrapper{
  14. width: 800px;
  15. height: auto;
  16. margin: 0px auto;
  17. padding: 20px;
  18. background-color: #e6f0e9;
  19. background-image: linear-gradient(0deg, #e6f0e9 0%, white 100%);
  20. border-radius: 30px;
  21. box-shadow: 1px 5px 40px black;
  22. }
  23.  
  24. /* NAV MENU */
  25. .navmenu{
  26. width: 800px;
  27. height: 35px;
  28. background-color: gold;
  29. border-radius: 15px;
  30. font-family: 'Audiowide', cursive;
  31. }
  32. .navmenu a{
  33. display: inline-block;
  34. color: black;
  35. background-color: gold;
  36. text-decoration: none;
  37. font-weight: bold;
  38. text-transform: uppercase;
  39. line-height: 35px;
  40. text-align: center;
  41. padding: 0px 20px;
  42. border-radius: 5px;
  43. }
  44. .navmenu a:hover{
  45. background-color: black;
  46. color: white;
  47. }
  48. .navmenu a:active{
  49. background-color: black;
  50. color: aqua;
  51. }
  52.  
  53. /* FOOTER */
  54. .footer{
  55. width: 800px;
  56. height: 100px;
  57. background-color: gold;
  58. color: black;
  59. border-radius: 15px;
  60. }
  61. .footer a{
  62. display: inline-block;
  63. color: black;
  64. font-weight: bold;
  65. text-decoration: none;
  66. margin: 3px;
  67. }
  68. .footer a:hover{
  69. text-decoration: underline;
  70. color: red;
  71. }
  72. .footer a.top{color: navy;}
  73. .footer a.top:hover{color: lightgoldenrodyellow;}
  74.  
  75. /* Booking BUTTON */
  76. .button {
  77. background-image: linear-gradient(to right, #232526 0%, #414345 51%, #232526 100%)
  78. }
  79. .button{
  80. margin: 0px;
  81. padding: 5px 15px;
  82. text-align: center;
  83. transition: 0.5s;
  84. background-size: 200% auto;
  85. color: white;
  86. box-shadow: 0 0 20px #eee;
  87. border-radius: 5px;
  88. display: block;
  89. }
  90. .button:hover {
  91. background-position: right center; /* change the direction of the change here */
  92. color: #fff;
  93. text-decoration: none;
  94. }
  95.  
  96. /* CONTENTs headings. paragraphs*/
  97. .content{
  98. width: 800px;
  99. height: auto;
  100. float: left;
  101. margin-right: 30px;
  102. }
  103. .content h1{
  104. font-weight: bold;
  105. text-transform: uppercase;
  106. color: black;
  107. text-shadow: 2px 2px lightgrey;
  108. text-align: center;
  109. }
  110. .content h2{
  111. font-weight: bold;
  112. text-transform: uppercase;
  113. color: black;
  114. text-shadow: 2px 2px lightgrey;
  115. text-align: left;
  116. }
  117. .content p{
  118.  
  119. text-align: justify;
  120. word-spacing: 2px;
  121. font-size: 18px;
  122. }
  123.  
  124. /* BOOK TABLE */
  125. #customers {
  126. font-family: Arial, Helvetica, sans-serif;
  127. border-collapse: collapse;
  128. width: 400px;
  129. text-align: center;
  130. }
  131.  
  132. #customers td, #customers th {
  133. border: 2px solid black;
  134. padding: 8px;
  135. }
  136.  
  137. #customers th {
  138. padding-top: 12px;
  139. padding-bottom: 12px;
  140. text-align: left;
  141. background-color: white;
  142. color: white;
  143. }
  144.  
  145. /* CONTACT */
  146. input[type=text], textarea {
  147. width: 400px;
  148. padding: 12px;
  149. border: 1px solid #ccc;
  150. border-radius: 4px;
  151. box-sizing: border-box;
  152. margin-top: 5px;
  153. margin-bottom: 16px;
  154. resize: vertical;
  155. }
  156. input[type=email], input[type=number] {
  157. width: 400px;
  158. padding: 12px;
  159. border: 1px solid #ccc;
  160. border-radius: 4px;
  161. box-sizing: border-box;
  162. margin-top: 5px;
  163. margin-bottom: 16px;
  164. resize: vertical;
  165. }
  166. input[type=submit], input[type=reset] {
  167. background-color: #4CAF50;
  168. color: white;
  169. padding: 5px 20px;
  170. border: none;
  171. border-radius: 4px;
  172. cursor: pointer;
  173. }
  174. input[type=submit]:hover {
  175. background-color: #45a049;
  176. }
  177.  
  178. input[type=reset]:hover {
  179. background-color: #45a049;
  180. }
  181.  
  182. /* SELECT TAG*/
  183. select{
  184. width: 180px;
  185. padding: 5px;
  186. border-radius: 5px;
  187. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement