Advertisement
sassythesasquatch

Untitled

Dec 19th, 2023
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.35 KB | Help | 0 0
  1. body {
  2. margin: 0;
  3. font-family: Arial, sans-serif;
  4. }
  5.  
  6. .navbar {
  7. background-color: rgba(255, 255, 255, 1);
  8. padding: 10px 20px;
  9. color: white;
  10. display: flex;
  11. align-items: center;
  12. position: sticky;
  13. top: 0;
  14. z-index: 100;
  15. box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  16. transition: 0.3s;
  17. opacity: 1;
  18. }
  19.  
  20. .navbar.shrink {
  21. padding: 0.1px 0.2px;
  22. opacity: 0.9;
  23. }
  24.  
  25.  
  26. .logo {
  27. font-size: 24px;
  28. }
  29.  
  30. .logopicture {
  31. height: 75%;
  32. width: 75%;
  33. }
  34.  
  35. .underline-button {
  36. color: #5ed2f7;
  37. position: relative;
  38. overflow: hidden;
  39. background: none;
  40. border: 1px dotted #5ed2f7;
  41. padding: 10px;
  42. cursor: pointer;
  43. font-size: 24px;
  44. text-decoration: none;
  45. overflow: hidden;
  46. }
  47.  
  48. .underline-button:after {
  49. content: '';
  50. display: block;
  51. position: absolute;
  52. left: 50%;
  53. bottom: 0;
  54. background-color: #5ed2f7;
  55. height: 3px;
  56. width: 0;
  57. transition: width 0.3s ease-out;
  58. transform: translateX(-50%);
  59. }
  60.  
  61. .underline-button:hover:after {
  62. width: 100%;
  63. }
  64.  
  65. .welcome {
  66. text-align: center;
  67. }
  68.  
  69. .ourmission {
  70. text-align: center;
  71. font-size: 20px;
  72. }
  73.  
  74. .firstparagraph {
  75. max-width: 1200px;
  76. text-align: center;
  77. padding-left: 360px;
  78. }
  79.  
  80. .textp1 {
  81. text-align: center;
  82. font-size: 20px;
  83. }
  84.  
  85. .phone-number {
  86. font-size: 30px;
  87. padding-left: 170px;
  88. color: #5ed2f7;
  89. }
  90.  
  91. .content {
  92. padding: 20px;
  93. margin-top: 50px;
  94. }
  95.  
  96. .p1 {
  97. text-align: center;
  98. }
  99.  
  100. .banner1 {
  101. width: 100%;
  102. height: 100%;
  103. opacity: 95%;
  104. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  105. }
  106.  
  107. .bannertext {
  108. position: absolute;
  109. top: 35%;
  110. text-align: center;
  111. padding-left: 10px;
  112. color: #5ed2f7;
  113. font-size: 50px;
  114. text-shadow: 0 5px 10px rgba(0, 0, 0, 1);
  115. mix-blend-mode: normal;
  116. opacity: 80%;
  117. }
  118.  
  119. .transparentbackground1 {
  120. background: rgba(94, 210, 247, 0.15);
  121. color: #232424;
  122. }
  123.  
  124. .contactHome {
  125. background: rgba(5, 195, 255, 0.3);
  126. border: 2px solid #0374ff;
  127. }
  128.  
  129. .bottomlogo {
  130. height: 15%;
  131. width: 15%;
  132. padding-left: 100px;
  133. padding-top: 30px;
  134. }
  135.  
  136. .end {
  137. background: #025d7a;
  138. display: flex;
  139. flex-direction: column;
  140. align-items: flex-start;
  141. justify-content: space-between;
  142. }
  143.  
  144. .bottomlinks {
  145. display: flex;
  146. flex-direction: column;
  147. padding-left: 400px;
  148. margin-top: -170px;
  149. }
  150.  
  151. .links {
  152. color: white;
  153. font-size: 15px;
  154. text-decoration: none;
  155. margin-bottom: 0.5px;
  156. padding: 2.5px;
  157. }
  158.  
  159. .minilogo {
  160. padding-top: 10px;
  161. height: 40px;
  162. width: 40px;
  163. }
  164.  
  165. .bottomcontact {
  166. position: relative;
  167. display: flex;
  168. flex-direction: column;
  169. margin-left: 675px;
  170. top: -280px;
  171. }
  172.  
  173. .servicetimes {
  174. position: relative;
  175. display: flex;
  176. flex-direction: column;
  177. margin-left: 1000px;
  178. top: -467px;
  179. }
  180.  
  181. .line89 {
  182. display: flex;
  183. align-items: center;
  184. }
  185. .line89 img {
  186. width: 35px;
  187. height: 35px;
  188. margin-right: 10px;
  189. }
  190.  
  191. .line89 span {
  192. font-size: 18px;
  193. color: white;
  194. }
  195.  
  196. .line-104 {
  197. color: white;
  198. font-size: 18px;
  199. text-decoration: dotted;
  200. padding-bottom: 10px;
  201. }
  202.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement