|
| 1 | +@import url("https://fonts.googleapis.com/css?family=Varela+Round"); |
| 2 | +@import url("https://fonts.googleapis.com/css?family=Nunito:200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i"); |
| 3 | + |
| 4 | +* { |
| 5 | + margin: 0; |
| 6 | + padding: 0; |
| 7 | + box-sizing: border-box; |
| 8 | +} |
| 9 | + |
| 10 | +html { |
| 11 | + scroll-padding-top: calc(4.5rem - 1px) !important; |
| 12 | +} |
| 13 | + |
| 14 | +body { |
| 15 | + letter-spacing: 0.0625em !important; |
| 16 | +} |
| 17 | + |
| 18 | +.btn { |
| 19 | + box-shadow: 0 0.1875rem 0.1875rem 0 rgba(0, 0, 0, 0.1) !important; |
| 20 | + padding: 1.25rem 2rem; |
| 21 | + font-family: "Varela Round", -apple-system, BlinkMacSystemFont, "Segoe UI", |
| 22 | + Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", |
| 23 | + "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important; |
| 24 | + font-size: 80%; |
| 25 | + text-transform: uppercase; |
| 26 | + letter-spacing: 0.15rem; |
| 27 | + border: 0; |
| 28 | +} |
| 29 | + |
| 30 | +.btn-primary { |
| 31 | + color: #fff; |
| 32 | + background-color: #64a19d; |
| 33 | + border-color: #64a19d; |
| 34 | +} |
| 35 | +.btn-primary:hover { |
| 36 | + color: #fff; |
| 37 | + background-color: #558985; |
| 38 | + border-color: #50817e; |
| 39 | +} |
| 40 | +.btn-check:focus + .btn-primary, |
| 41 | +.btn-primary:focus { |
| 42 | + color: #fff; |
| 43 | + background-color: #558985; |
| 44 | + border-color: #50817e; |
| 45 | + box-shadow: 0 0 0 0.25rem rgba(123, 175, 172, 0.5); |
| 46 | +} |
| 47 | +.btn-check:checked + .btn-primary, |
| 48 | +.btn-check:active + .btn-primary, |
| 49 | +.btn-primary:active, |
| 50 | +.btn-primary.active, |
| 51 | +.show > .btn-primary.dropdown-toggle { |
| 52 | + color: #fff; |
| 53 | + background-color: #50817e; |
| 54 | + border-color: #4b7976; |
| 55 | +} |
| 56 | +.btn-check:checked + .btn-primary:focus, |
| 57 | +.btn-check:active + .btn-primary:focus, |
| 58 | +.btn-primary:active:focus, |
| 59 | +.btn-primary.active:focus, |
| 60 | +.show > .btn-primary.dropdown-toggle:focus { |
| 61 | + box-shadow: 0 0 0 0.25rem rgba(123, 175, 172, 0.5); |
| 62 | +} |
| 63 | +.btn-primary:disabled, |
| 64 | +.btn-primary.disabled { |
| 65 | + color: #fff; |
| 66 | + background-color: #64a19d; |
| 67 | + border-color: #64a19d; |
| 68 | +} |
| 69 | + |
| 70 | +.masthead { |
| 71 | + position: relative; |
| 72 | + width: 100%; |
| 73 | + height: auto; |
| 74 | + min-height: 35rem; |
| 75 | + padding: 15rem 0; |
| 76 | + background: linear-gradient( |
| 77 | + to bottom, |
| 78 | + rgba(0, 0, 0, 0.3) 0%, |
| 79 | + rgba(0, 0, 0, 0.7) 75%, |
| 80 | + #000 100% |
| 81 | + ), |
| 82 | + url("/img/landing-background.jpg"); |
| 83 | + background-position: center; |
| 84 | + background-repeat: no-repeat; |
| 85 | + background-attachment: scroll; |
| 86 | + background-size: cover; |
| 87 | +} |
| 88 | +.masthead h1, |
| 89 | +.masthead .h1 { |
| 90 | + font-family: "Varela Round", -apple-system, BlinkMacSystemFont, "Segoe UI", |
| 91 | + Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", |
| 92 | + "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important; |
| 93 | + font-size: 2.5rem; |
| 94 | + line-height: 2.5rem; |
| 95 | + letter-spacing: 0.8rem; |
| 96 | + background: linear-gradient( |
| 97 | + rgba(255, 255, 255, 0.9), |
| 98 | + rgba(255, 255, 255, 0) |
| 99 | + ); |
| 100 | + -webkit-text-fill-color: transparent; |
| 101 | + -webkit-background-clip: text; |
| 102 | + background-clip: text; |
| 103 | +} |
| 104 | +.masthead h2, |
| 105 | +.masthead .h2 { |
| 106 | + max-width: 20rem; |
| 107 | + font-size: 1rem; |
| 108 | +} |
| 109 | +@media (min-width: 768px) { |
| 110 | + .masthead h1, |
| 111 | + .masthead .h1 { |
| 112 | + font-size: 4rem; |
| 113 | + line-height: 4rem; |
| 114 | + } |
| 115 | +} |
| 116 | +@media (min-width: 992px) { |
| 117 | + .masthead { |
| 118 | + height: 100vh; |
| 119 | + padding: 0; |
| 120 | + } |
| 121 | + .masthead h1, |
| 122 | + .masthead .h1 { |
| 123 | + font-size: 6.5rem; |
| 124 | + line-height: 6.5rem; |
| 125 | + letter-spacing: 0.8rem; |
| 126 | + } |
| 127 | + .masthead h2, |
| 128 | + .masthead .h2 { |
| 129 | + max-width: 30rem; |
| 130 | + font-size: 1.25rem; |
| 131 | + } |
| 132 | +} |
0 commit comments