Advertisement
Guest User

Untitled

a guest
Jan 21st, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.44 KB | None | 0 0
  1.  
  2. #main-booking-form .search-button-container {
  3. position: absolute;
  4. z-index: 1;
  5. cursor: pointer;
  6. width: 50px;
  7. height: 50px;
  8. left: 50%;
  9. bottom: -25px;
  10. margin-left: -25px;
  11. }
  12. #main-booking-form .search-button-container input {
  13. border: 0;
  14. background: transparent;
  15. text-align: center;
  16. color: white;
  17. line-height: 13px;
  18. padding: 0 20px;
  19. font-family: "Droid Serif", Arial, Helvetica, sans-serif;
  20. position: absolute;
  21. left: -20px;
  22. top: -20px;
  23. white-space: initial;
  24. width: 90px;
  25. height: 90px;
  26. }
  27.  
  28. #main-booking-form .search-button-container:hover:after, #main-booking-form .search-button-container.active:after {
  29. background: #95784a;
  30. -webkit-box-shadow: 0 0 0 5px white, 0 0 0 6px #cccccc;
  31. box-shadow: 0 0 0 5px white, 0 0 0 6px #cccccc;
  32. }
  33.  
  34. #main-booking-form .search-button-container:after {
  35. display: block;
  36. width: 50px;
  37. height: 50px;
  38. position: absolute;
  39. left: 50%;
  40. top: 0;
  41. margin-left: -25px;
  42. content: "";
  43. z-index: -1;
  44. -webkit-transform: rotate(-45deg);
  45. -ms-transform: rotate(-45deg);
  46. -o-transform: rotate(-45deg);
  47. transform: rotate(-45deg);
  48. background: #a93503;
  49. -webkit-box-shadow: 0 0 0 5px #e8e8e8, 0 0 0 6px #cccccc;
  50. box-shadow: 0 0 0 5px #e8e8e8, 0 0 0 6px #cccccc;
  51. -webkit-transition: all 0.3s ease;
  52. -o-transition: all 0.3s ease;
  53. transition: all 0.3s ease;
  54. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement