Advertisement
Guest User

Untitled

a guest
Nov 18th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.02 KB | None | 0 0
  1. *{
  2. box-sizing: border-box;
  3. padding: 0;
  4. margin: 0;
  5. }
  6. html, body{
  7. font-family: Roboto;
  8. font-size: 16px;
  9. font-weight: 100;
  10. }
  11. html{
  12. height: 100%;
  13. }
  14. body{
  15. height: 100%;
  16. color: #ffffff;
  17. background-image: url("../img/light-green-vector-background-with-dots-lines_6869-1443.jpg");
  18. background-repeat: no-repeat;
  19. background-size: cover;
  20. background-attachment: fixed;
  21. }
  22.  
  23. /* HEADER */
  24. header{
  25. background-image: linear-gradient(#016B2B, #000000);
  26. padding: 25px;
  27. height: 200px;
  28. vertical-align: middle;
  29. margin-bottom: 150px;
  30. }
  31. .logo{
  32. position: relative;
  33. display: table-cell;
  34. height: 100%;
  35. vertical-align: middle;
  36. float: left;
  37. }
  38. .logo img{
  39. margin-right: 30px;
  40. float:left;
  41. max-height: 150px;
  42. }
  43. header h1{
  44. margin-top: 22px;
  45. font-weight: normal;
  46. text-transform: uppercase;
  47. float: left;
  48. font-size: 40px;
  49. }
  50. .nav-button{
  51. max-height: 150px;
  52. float: right;
  53. margin: 25px 25px 0 0;
  54. }
  55. header a{
  56. text-decoration: none;
  57. color: #ffffff;
  58. }
  59. /* HEADER */
  60.  
  61. /* NAV */
  62. #menu, #fltr{
  63. position: fixed;
  64. top: 0;
  65. left: -100%;
  66. /* transform: translate(-100%); */
  67. transition: left 1s ease;
  68. height: 100%;
  69. width: 100%;
  70. background: #004b1e;
  71. font-size: 32px;
  72. }
  73. #map{
  74. position: fixed;
  75. top: 0;
  76. left: -100%;
  77. /* transform: translate(-100%); */
  78. transition: left 1s ease;
  79. height: 100%;
  80. width: 100%;
  81. background: #004b1e;
  82. font-size: 32px;
  83. }
  84.  
  85. #menu li{
  86. display: block;
  87. background: #016B2B;
  88. border-bottom: 2px solid #000000;
  89. padding: 10px 30px;
  90. font-weight: 200;
  91. }
  92. .head{
  93. background-image: linear-gradient(#016B2B, #000000);
  94. padding: 25px;
  95. width: 100%;
  96. height: 200px;
  97. color: #ffffff;
  98. }
  99. #menu li.span{
  100. background: #004b1e;
  101. font-style: italic;
  102. color: #cccccc;
  103. }
  104. nav h1{
  105. margin-top: 35px;
  106. text-align: center;
  107. width: calc(100% - 150px);
  108. font-weight: normal;
  109. text-transform: uppercase;
  110. float: left;
  111. font-size: 60px;
  112. font-style: normal;
  113. }
  114. nav a{
  115. font-style: normal;
  116. display: block;
  117. text-decoration: none;
  118. color: #ffffff;
  119. font-size: 48px;
  120. font-weight: 400;
  121. }
  122.  
  123. #fltr table{
  124. margin: calc(50vh - (400px + 495px) / 2) auto;
  125. }
  126. #fltr td:first-child{
  127. padding-right: 10px;
  128. text-align: right;
  129. }
  130. .rooms div {
  131. display: inline-block;
  132. }
  133. .rooms label{
  134. text-align: center;
  135. width: 100%;
  136. display: block;
  137. width: 100px;
  138. font-size: 32px;
  139. background: #cccccc;
  140. color: #000000;
  141. cursor: pointer;
  142. }
  143. .rooms input{
  144. display: none;
  145. }
  146. input:checked + label{
  147. background: #aaaaaa;
  148. }
  149. #fltr iframe{
  150. display: block;
  151. }
  152. .price input{
  153. font-size: 32px;
  154. width: 100px;
  155. }
  156. .foot{
  157. position: absolute;
  158. bottom: 0;
  159. width: 100%;
  160. height: 200px;
  161. }
  162. #fltr input[type="submit"]{
  163. width: 100%;
  164. height: 200px;
  165. font-size: 72px;
  166. background: #fffb3e;
  167. color: #000000;
  168. border: none;
  169. }
  170. .footer{
  171. height:40px;
  172. width: 100%;
  173. align-items: center;
  174. }
  175. .click{
  176. height:40px;
  177. width:150px;
  178. }
  179. /* NAV */
  180.  
  181.  
  182. /* MAIN */
  183. main{
  184. font-weight: 300;
  185. padding: 0 50px;
  186. text-align: center;
  187. }
  188. main h1{
  189. font-size: 40px;
  190. font-weight: 500;
  191. }
  192. main h2{
  193. font-size: 16px;
  194. font-weight: 300;
  195. }
  196. main h5{
  197. font-size: 16px;
  198. font-weight: 300;
  199. }
  200. main .image-row{
  201. max-height: 200px;
  202. }
  203. main .images{
  204. margin: 50px 0;
  205. }
  206. main .images img{
  207. max-width: 20%;
  208. }
  209. main .yt{
  210. margin: 150px 0 50px 0;
  211. }
  212. main .trial{
  213. background: #fffb3e;
  214. color: #000000;
  215. font-size: 32px;
  216. width: 600px;
  217. height: 100px;
  218. margin: 50px;
  219. border: none;
  220. border-radius: 5px;
  221. }
  222.  
  223. /* MAIN */
  224. .design{
  225. background-color: Transparent;
  226. background-repeat:no-repeat;
  227. border: none;
  228. cursor:pointer;
  229. overflow: hidden;
  230. font-size: 200%;
  231. }
  232. .content{
  233. background-color: #FFFFFF;
  234. border: 1px solid #CCCCCC;
  235. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
  236. transition: border 0.2s linear 0s, box-shadow 0.2s linear 0s;
  237. border-radius: 4px;
  238. color: #555555;
  239. display:block;
  240. width:200px;
  241. margin: 20px auto;
  242. font-size: 14px;
  243. text-align:center;
  244. height: 50px;
  245. line-height: 20px;
  246. margin-bottom: 10px;
  247. padding: 4px 6px;
  248. vertical-align: middle;
  249. text-decoration:none;
  250. }
  251. .row{
  252. width: 100%;
  253. text-align: left;
  254. float: left;
  255. font-family: Arial;
  256. height:200px;
  257. background: rgb(20, 115, 26);
  258. }
  259. .row .imm{
  260. width: 25%;
  261. height: 100%;
  262. display: table-cell;
  263. vertical-align: inherit;
  264. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement