123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186 |
- html, body {
- margin: 0;
- padding: 0;
- font-family: Quicksand;
- scroll-behavior: smooth;
- }
- a {
- color: black;
- -o-transition:.3s;
- -ms-transition:.3s;
- -moz-transition:.3s;
- -webkit-transition:.3s;
- transition:.3s;
- }
- a:hover {
- color: #2d77ef;
- }
- nav {
- text-align: center;
- padding: 10px;
- }
- nav ul {
- margin: 0;
- padding: 0;
- list-style-type: none;
- }
- nav ul li {
- display: inline;
- margin: 0;
- padding: 15px;
- }
- nav ul li a {
- font-size: 24px;
- text-decoration: none;
- }
- main {
- margin-bottom: 200px;
- }
- main h2 {
- text-align: center;
- font-size: 32px;
- font-weight: 800;
- padding-top: 40px;
- }
- footer {
- text-align: center;
- margin-top: -80px;
- height: 80px;
- }
- .player-list:before {
- content: "Currently playing:";
- }
- .player-list ul{
- margin: 0;
- padding: 0;
- list-style-type: none;
- }
- .player-list li{
- display: inline;
- margin: 0;
- padding: 5px;
- }
- .button {
- display: inline-block;
- width: 200px;
- height: 28px;
- background-color: #2d77ef;
- border: 1px solid #2d77ef;
- color: white;
- border-radius: 15px;
- padding: 16px;
- text-decoration: none;
- vertical-align: middle;
- font-size: 20px;
- -o-transition:.3s;
- -ms-transition:.3s;
- -moz-transition:.3s;
- -webkit-transition:.3s;
- transition:.3s;
- }
- .button:hover {
- background-color: transparent;
- color: #2d77ef;
- }
- #background-container {
- text-align: center;
- width: 100%;
- }
- #background-container h1 {
- font-size: 48px;
- font-weight: 800;
- }
- #hero-section {
- text-align: center;
- }
- #hero-section .hero-banner {
- display: block;
- width: 100%;
- height: 400px;
- background: url('http://placehold.it/1440x720') center center no-repeat;
- background-size: cover;
- }
- #hero-section .hero-banner-call-to-action {
- text-align: center;
- margin-top: -100px;
- }
- #hero-section .hero-banner-call-to-action .button {
- margin-left: 30px;
- margin-right: 30px;
- }
- #info-section {
- min-height: 400px;
- text-align: center;
- padding-left: 16px;
- padding-right: 16px;
- margin-bottom: 40px;
- }
- #spacer-section-1 {
- text-align: center;
- }
- #spacer-section-1 .hero-banner {
- display: block;
- width: 100%;
- height: 400px;
- background: url('http://placehold.it/1440x720') center center no-repeat;
- background-size: cover;
- }
- #spacer-section-2 {
- text-align: center;
- }
- #spacer-section-2 .hero-banner {
- display: block;
- width: 100%;
- height: 400px;
- background: url('http://placehold.it/1440x720') center center no-repeat;
- background-size: cover;
- }
- #register-section {
- height: 400px;
- text-align: center;
- padding-left: 16px;
- padding-right: 16px;
- margin-bottom: 40px;
- }
- #registrationError {
- color: crimson;
- text-align: center;
- }
- #contact-section {
- min-height: 400px;
- text-align: center;
- padding-left: 16px;
- padding-right: 16px;
- }
|