Guest User

Untitled

a guest
Oct 18th, 2019
379
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.89 KB | None | 0 0
  1. body {
  2. background-color: rgb(226, 222, 222);
  3. }
  4. .header {
  5. position: fixed;
  6. height: 100px;
  7. width: 100%;
  8. left: 0;
  9. top: 0;
  10. background-color: rgb(204, 31, 0);
  11. }
  12. .titlemain {
  13. font-size: 4vw;
  14. text-align: center;
  15. padding-top: 1.5%;
  16. margin-block-start: 0;
  17. margin-block-end: 0;
  18. margin-inline-start: 0;
  19. margin-inline-end: 0;
  20. }
  21. /* Right drop down menu */
  22. .dropbtn {
  23. background-color: #4CAF50;
  24. color: white;
  25. padding: 16px;
  26. font-size: 16px;
  27. border: none;
  28. cursor: pointer;
  29. }
  30. .dropbtn:hover, .dropbtn:focus {
  31. background-color: #3e8e41;
  32. }
  33. .dropdown {
  34. float: right;
  35. padding-top: 1.25%;
  36. position: relative;
  37. }
  38. .dropdown-content {
  39. display: none;
  40. position: absolute;
  41. background-color: #f1f1f1;
  42. min-width: 160px;
  43. overflow: auto;
  44. box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  45. right: 0;
  46. z-index: 1;
  47. }
  48. .dropdown-content a {
  49. color: black;
  50. padding: 12px 16px;
  51. text-decoration: none;
  52. display: block;
  53. }
  54. .dropdown a:hover {
  55. background-color: #ddd;
  56. }
  57. .show {
  58. display: block;
  59. }
  60. /* END */
  61. .icons{
  62. padding: 10% 0 0 45%;
  63. font-size: 50px;
  64. color: blue;
  65. }
  66. .reviews { /* Left box */
  67. position: fixed;
  68. height: 50%;
  69. width: 15%;
  70. left: 5%;
  71. top: 25%;
  72. background-color: rgb(204, 31, 0);
  73. }
  74. .map { /* Right box */
  75. position: fixed;
  76. height: 50%;
  77. width: 15%;
  78. left: 80%;
  79. top: 25%;
  80. background-color: rgb(204, 31, 0);
  81. }
  82. .slideshow { /* Middle box */
  83. position: fixed;
  84. height: 300px;
  85. width: 50%;
  86. left: 25%;
  87. top: 35%;
  88. background-color: rgb(204, 31, 0);
  89. }
  90. .footer {
  91. position: fixed;
  92. left: 0;
  93. bottom: 0;
  94. width: 100%;
  95. background-color: rgb(204, 31, 0);
  96. color: white;
  97. text-align: center;
  98. }
  99. .footer a{
  100. color: white;
  101. text-decoration:none; /* Used to remove underscore from link */
  102. }
Advertisement
Add Comment
Please, Sign In to add comment