the bola v2 website
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

main.css 5.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372
  1. @import url("https://db.onlinewebfonts.com/c/2206d6cc490084998d531e8c1b2cbb4a?family=Druk+Wide+Bold");
  2. @import url("https://fonts.googleapis.com/css?family=Poppins");
  3. :root {
  4. --primary-clr: #67eb47;
  5. --dark-clr: #000;
  6. --light-clr: #fff;
  7. }
  8. ::-webkit-calendar-picker-indicator {
  9. filter: invert(1);
  10. }
  11. /* DEFAULT */
  12. * {
  13. padding: 0;
  14. margin: 0;
  15. }
  16. body {
  17. font-family: "Poppins";
  18. }
  19. p {
  20. font-size: clamp(1rem, 0.938vw, 1.125rem);
  21. }
  22. .text-db {
  23. color: var(--primary-clr);
  24. }
  25. .text-highlight {
  26. font-family: "Druk Wide Bold" !important;
  27. }
  28. .db-btn {
  29. background-color: var(--primary-clr);
  30. color: var(--dark-clr) !important;
  31. border-radius: 50px;
  32. max-width: fit-content;
  33. border: none;
  34. }
  35. .db-h3 {
  36. font-size: clamp(2.2rem, 2.083vw, 2.5rem);
  37. line-height: clamp(2.925rem, 2.604vw, 3.125rem);
  38. font-weight: 500;
  39. }
  40. .db-h5 {
  41. font-size: clamp(1.175rem, 1.146vw, 1.375rem);
  42. line-height: clamp(1.7rem,2.083vw,2.5rem);
  43. }
  44. .db-h6 {
  45. font-size: clamp(1.25rem, 1vw, 1.75rem);
  46. font-weight: 500;
  47. }
  48. .about-paragraph {
  49. width: 100%;
  50. }
  51. .feature-paragraph {
  52. width: 100%;
  53. }
  54. .section-2 {
  55. padding: 4rem 3rem;
  56. background-size: cover;
  57. padding-top: 10rem;
  58. padding-bottom: 5rem;
  59. background-repeat: no-repeat;
  60. background-position: center top;
  61. }
  62. .section3-img {
  63. background-size: cover;
  64. background-position: left;
  65. width: 100%;
  66. min-height: 70vh;
  67. border: 1px solid gray;
  68. }
  69. .db-input {
  70. background-color: black;
  71. padding: 1.125rem 0;
  72. border: none;
  73. color: var(--light-clr);
  74. border-bottom: 2px solid var(--primary-clr);
  75. width: 100%;
  76. font-size: 18px;
  77. }
  78. .section-8{
  79. background-size: cover;
  80. background-repeat: no-repeat;
  81. background-position: right top;
  82. padding: 7.5rem 3rem;
  83. }
  84. .db-input::placeholder {
  85. color: var(--light-clr);
  86. opacity: 0.5; /* Firefox */
  87. }
  88. .db-input:focus-visible {
  89. outline: none;
  90. }
  91. /* HERO - SECTION 1*/
  92. .hero-text-highlight {
  93. font-size: 2.3rem;
  94. line-height: 2.8rem;
  95. font-weight: bold;
  96. }
  97. .hero-text-description {
  98. font-size: clamp(1.563rem, 1vw, 1.563rem);
  99. line-height: 2.5rem;
  100. }
  101. /* NAVBAR */
  102. #main-nav {
  103. padding: 2rem 3rem;
  104. }
  105. .nav-logo-desktop {
  106. width: 3.75rem;
  107. height: 3.75rem;
  108. }
  109. .nav-logo-text {
  110. font-size: clamp(1.313rem, 1.146vw, 1.375rem);
  111. padding-left: 1rem;
  112. vertical-align: middle;
  113. }
  114. #main-nav .nav-item {
  115. padding: 0;
  116. }
  117. #main-nav .nav-item a {
  118. color: var(--light-clr);
  119. transition: all 0.5s ease-in-out;
  120. font-size: 1.25rem;
  121. font-weight: 500;
  122. }
  123. #main-nav .nav-item a:hover {
  124. color: var(--primary-clr);
  125. }
  126. #main-nav .nav-item a.active {
  127. color: var(--primary-clr);
  128. }
  129. /* FOOTER */
  130. .footer-container{
  131. width: 100%;
  132. }
  133. .footer-logo{
  134. width: 337px;
  135. margin-bottom: 5rem;
  136. }
  137. .footer-details-heading{
  138. font-size: 1.563rem;
  139. }
  140. .footer-details-desc{
  141. line-height: 30px;
  142. font-size: 1.25rem;
  143. font-weight: normal;
  144. }
  145. .db-link{
  146. color: var(--light-clr);
  147. text-decoration: none;
  148. transition: all 200ms ease-in-out;
  149. }
  150. .db-link:hover{
  151. color: var(--primary-clr);
  152. }
  153. .db-link-icon{
  154. text-decoration: none;
  155. color: var(--primary-clr);
  156. transition: all 200ms ease-in-out;
  157. }
  158. .db-link-icon:hover{
  159. color: var(--light-clr);
  160. }
  161. .section-5 {
  162. padding-left: 0;
  163. padding-right: 0;
  164. }
  165. .article-container{
  166. margin-bottom: 5.25rem;
  167. }
  168. .article-item{
  169. padding-top: 80%;
  170. background-size: cover;
  171. background-repeat: no-repeat;
  172. background-position: center center;
  173. }
  174. .article-details{
  175. height: 100%;
  176. width: 100%;
  177. top:0;
  178. left:0
  179. }
  180. .article-details-datetime{
  181. width: 100%;
  182. height: fit-content;
  183. }
  184. .article-details-link{
  185. width: 100%;
  186. height: fit-content;
  187. }
  188. .article-details-line{
  189. width: 60px;
  190. height: 5px;
  191. opacity: 1;
  192. }
  193. .article-details-href{
  194. text-decoration: none;
  195. vertical-align: middle;
  196. }
  197. .booking-container{
  198. margin-bottom: 5.25rem;
  199. overflow: hidden;
  200. }
  201. .booking-item{
  202. padding-top: 80%;
  203. background-size: cover;
  204. background-repeat: no-repeat;
  205. background-position: center center;
  206. }
  207. .booking-details{
  208. height: 100%;
  209. width: 100%;
  210. top:0;
  211. left:0
  212. }
  213. .booking-overlay{
  214. background-color: rgba(0, 0, 0, 0.5);
  215. width: 100%;
  216. padding: 1.688rem 3.625rem;
  217. transition: all 300ms ease-in-out;
  218. height: fit-content;
  219. }
  220. .booking-item.active .booking-overlay{
  221. background-color: rgba(103, 235, 71, 0.5);
  222. }
  223. .booking-item:hover .booking-overlay{
  224. background-color: rgba(103, 235, 71, 0.5);
  225. }
  226. .container-contactus{
  227. padding-left: 6.5rem;
  228. padding-right: 6.5rem;
  229. }
  230. @media (min-width: 768px) {
  231. #main-nav {
  232. padding: 2rem 4.5rem;
  233. }
  234. .hero-text-highlight {
  235. font-size: clamp(4rem, 3.646vw, 4.375rem);
  236. line-height: clamp(4.2rem, 3.75vw, 4.5rem);
  237. }
  238. .hero-text-description {
  239. font-size: clamp(1.563rem, 1.302vw, 1.563rem);
  240. line-height: 2.5rem;
  241. }
  242. .section2 {
  243. padding: 3.75rem 3rem;
  244. }
  245. .section-8{
  246. background-size: cover;
  247. background-repeat: no-repeat;
  248. background-position: center top;
  249. padding: 7.5rem 3rem;
  250. }
  251. #main-nav {
  252. padding: 2rem 4.5rem;
  253. }
  254. .about-paragraph {
  255. width: 70%;
  256. }
  257. .feature-paragraph {
  258. width: 80%;
  259. }
  260. .section3-img {
  261. background-position: center;
  262. }
  263. .container-contactus{
  264. padding-left: 9.738rem;
  265. padding-right: 8.438rem;
  266. }
  267. .footer-logo{
  268. width: 237px;
  269. }
  270. }
  271. @media (min-width: 992px) {
  272. #main-nav .nav-item {
  273. padding: 0 1.875rem;
  274. }
  275. .article-container {
  276. padding-left: 8.438rem;
  277. padding-right: 8.438rem;
  278. }
  279. }
  280. /* UTILS */
  281. .p-7 {
  282. padding: 3.75rem;
  283. }
  284. .px-7 {
  285. padding: 0 3.75rem;
  286. }
  287. .py-6 {
  288. padding-top: 4.5rem;
  289. padding-bottom: 4.5rem;
  290. }
  291. .py-7 {
  292. padding-top: 5rem;
  293. padding-bottom: 5rem;
  294. }
  295. .my-7 {
  296. margin-top: 5rem;
  297. margin-bottom: 5rem;
  298. }