main.css 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  1. html, body {
  2. margin: 0;
  3. padding: 0;
  4. font-family: Quicksand;
  5. scroll-behavior: smooth;
  6. }
  7. a {
  8. color: black;
  9. -o-transition:.3s;
  10. -ms-transition:.3s;
  11. -moz-transition:.3s;
  12. -webkit-transition:.3s;
  13. transition:.3s;
  14. }
  15. a:hover {
  16. color: #2d77ef;
  17. }
  18. nav {
  19. text-align: center;
  20. padding: 10px;
  21. }
  22. nav ul {
  23. margin: 0;
  24. padding: 0;
  25. list-style-type: none;
  26. }
  27. nav ul li {
  28. display: inline;
  29. margin: 0;
  30. padding: 15px;
  31. }
  32. nav ul li a {
  33. font-size: 24px;
  34. text-decoration: none;
  35. }
  36. main {
  37. margin-bottom: 200px;
  38. }
  39. main h2 {
  40. text-align: center;
  41. font-size: 32px;
  42. font-weight: 800;
  43. padding-top: 40px;
  44. }
  45. footer {
  46. text-align: center;
  47. margin-top: -80px;
  48. height: 80px;
  49. }
  50. .player-list:before {
  51. content: "Currently playing:";
  52. }
  53. .player-list ul{
  54. margin: 0;
  55. padding: 0;
  56. list-style-type: none;
  57. }
  58. .player-list li{
  59. display: inline;
  60. margin: 0;
  61. padding: 5px;
  62. }
  63. .button {
  64. display: inline-block;
  65. width: 200px;
  66. height: 28px;
  67. background-color: #2d77ef;
  68. border: 1px solid #2d77ef;
  69. color: white;
  70. border-radius: 15px;
  71. padding: 16px;
  72. text-decoration: none;
  73. vertical-align: middle;
  74. font-size: 20px;
  75. -o-transition:.3s;
  76. -ms-transition:.3s;
  77. -moz-transition:.3s;
  78. -webkit-transition:.3s;
  79. transition:.3s;
  80. }
  81. .button:hover {
  82. background-color: transparent;
  83. color: #2d77ef;
  84. }
  85. #background-container {
  86. text-align: center;
  87. width: 100%;
  88. }
  89. #background-container h1 {
  90. font-size: 48px;
  91. font-weight: 800;
  92. }
  93. #hero-section {
  94. text-align: center;
  95. }
  96. #hero-section .hero-banner {
  97. display: block;
  98. width: 100%;
  99. height: 400px;
  100. background: url('http://placehold.it/1440x720') center center no-repeat;
  101. background-size: cover;
  102. }
  103. #hero-section .hero-banner-call-to-action {
  104. text-align: center;
  105. margin-top: -100px;
  106. }
  107. #hero-section .hero-banner-call-to-action .button {
  108. margin-left: 30px;
  109. margin-right: 30px;
  110. }
  111. #info-section {
  112. min-height: 400px;
  113. text-align: center;
  114. padding-left: 16px;
  115. padding-right: 16px;
  116. margin-bottom: 40px;
  117. }
  118. #spacer-section-1 {
  119. text-align: center;
  120. }
  121. #spacer-section-1 .hero-banner {
  122. display: block;
  123. width: 100%;
  124. height: 400px;
  125. background: url('http://placehold.it/1440x720') center center no-repeat;
  126. background-size: cover;
  127. }
  128. #spacer-section-2 {
  129. text-align: center;
  130. }
  131. #spacer-section-2 .hero-banner {
  132. display: block;
  133. width: 100%;
  134. height: 400px;
  135. background: url('http://placehold.it/1440x720') center center no-repeat;
  136. background-size: cover;
  137. }
  138. #register-section {
  139. height: 400px;
  140. text-align: center;
  141. padding-left: 16px;
  142. padding-right: 16px;
  143. margin-bottom: 40px;
  144. }
  145. #registrationError {
  146. color: crimson;
  147. text-align: center;
  148. }
  149. #contact-section {
  150. min-height: 400px;
  151. text-align: center;
  152. padding-left: 16px;
  153. padding-right: 16px;
  154. }