|
| 1 | +@font-face { |
| 2 | + font-family: "Gotham"; |
| 3 | + src: local("Gotham"), url("fonts/Gotham/Gotham-Medium.otf") format("opentype"); |
| 4 | + font-weight: normal; |
| 5 | + font-style: normal; } |
| 6 | + |
| 7 | +@font-face { |
| 8 | + font-family: "Gotham-Book"; |
| 9 | + src: local("Gotham-Book"), url("fonts/Gotham/Gotham-Book.otf") format("opentype"); |
| 10 | + font-weight: normal; |
| 11 | + font-style: normal; } |
| 12 | + |
| 13 | +@font-face { |
| 14 | + font-family: "Gotham-Italic"; |
| 15 | + src: local("Gotham-Italic"), url("fonts/Gotham/Gotham-MediumItalic.otf") format("opentype"); |
| 16 | + font-weight: normal; |
| 17 | + font-style: italic; } |
| 18 | + |
| 19 | +@font-face { |
| 20 | + font-family: "Gotham-Bold"; |
| 21 | + src: local("Gotham-Bold"), url("fonts/Gotham/Gotham-Bold.otf") format("opentype"); |
| 22 | + font-weight: bold; |
| 23 | + font-style: bold; } |
| 24 | + |
| 25 | +/********************************************* |
| 26 | + * GLOBAL STYLES |
| 27 | + *********************************************/ |
| 28 | +body { |
| 29 | + background: #e9f1da; |
| 30 | + background: -moz-radial-gradient(center, circle cover, #f7fbfc 0%, #e9f1da 100%); |
| 31 | + background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, #f7fbfc), color-stop(100%, #e9f1da)); |
| 32 | + background: -webkit-radial-gradient(center, circle cover, #f7fbfc 0%, #e9f1da 100%); |
| 33 | + background: -o-radial-gradient(center, circle cover, #f7fbfc 0%, #e9f1da 100%); |
| 34 | + background: -ms-radial-gradient(center, circle cover, #f7fbfc 0%, #e9f1da 100%); |
| 35 | + background: radial-gradient(center, circle cover, #f7fbfc 0%, #e9f1da 100%); |
| 36 | + background-color: #92bb44; } |
| 37 | + |
| 38 | +.reveal { |
| 39 | + font-family: "Gotham-Book", "Helvetica", Arial, sans-serif; |
| 40 | + font-size: 36px; |
| 41 | + font-weight: 200; |
| 42 | + letter-spacing: -0.02em; |
| 43 | + color: #333333; } |
| 44 | + |
| 45 | +::selection { |
| 46 | + color: white; |
| 47 | + background: #134674; |
| 48 | + text-shadow: none; } |
| 49 | + |
| 50 | +/********************************************* |
| 51 | + * HEADERS |
| 52 | + *********************************************/ |
| 53 | +.reveal h1, |
| 54 | +.reveal h2, |
| 55 | +.reveal h3, |
| 56 | +.reveal h4, |
| 57 | +.reveal h5, |
| 58 | +.reveal h6 { |
| 59 | + margin: 0 0 20px 0; |
| 60 | + color: #8b0036; |
| 61 | + font-family: "Gotham-Bold", Impact, sans-serif; |
| 62 | + line-height: 0.9em; |
| 63 | + letter-spacing: 0.02em; |
| 64 | + text-transform: uppercase; |
| 65 | + text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2); } |
| 66 | + |
| 67 | +.reveal h1 { |
| 68 | + text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2); } |
| 69 | + |
| 70 | +/********************************************* |
| 71 | + * LINKS |
| 72 | + *********************************************/ |
| 73 | +.reveal a:not(.image) { |
| 74 | + color: #01a9b4; |
| 75 | + text-decoration: none; |
| 76 | + -webkit-transition: color .15s ease; |
| 77 | + -moz-transition: color .15s ease; |
| 78 | + -ms-transition: color .15s ease; |
| 79 | + -o-transition: color .15s ease; |
| 80 | + transition: color .15s ease; } |
| 81 | + |
| 82 | +.reveal a:not(.image):hover { |
| 83 | + color: #f9b8bb; |
| 84 | + text-shadow: none; |
| 85 | + border: none; } |
| 86 | + |
| 87 | +.reveal .roll span:after { |
| 88 | + color: #fff; |
| 89 | + background: #01a9b4; } |
| 90 | + |
| 91 | +/********************************************* |
| 92 | + * IMAGES |
| 93 | + *********************************************/ |
| 94 | +.reveal section img { |
| 95 | + margin: 15px; |
| 96 | + background: rgba(255, 255, 255, 0.12); |
| 97 | + border: 4px solid #333333; |
| 98 | + box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); |
| 99 | + -webkit-transition: all .2s linear; |
| 100 | + -moz-transition: all .2s linear; |
| 101 | + -ms-transition: all .2s linear; |
| 102 | + -o-transition: all .2s linear; |
| 103 | + transition: all .2s linear; } |
| 104 | + |
| 105 | +.reveal a:hover img { |
| 106 | + background: rgba(255, 255, 255, 0.2); |
| 107 | + border-color: #01a9b4; |
| 108 | + box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); } |
| 109 | + |
| 110 | +/********************************************* |
| 111 | + * NAVIGATION CONTROLS |
| 112 | + *********************************************/ |
| 113 | +.reveal .controls div.left, |
| 114 | +.reveal .controls div.left.enabled { |
| 115 | + border-right-color: #01a9b4; } |
| 116 | + |
| 117 | +.reveal .controls div.right, |
| 118 | +.reveal .controls div.right.enabled { |
| 119 | + border-left-color: #01a9b4; } |
| 120 | + |
| 121 | +.reveal .controls div.up, |
| 122 | +.reveal .controls div.up.enabled { |
| 123 | + border-bottom-color: #01a9b4; } |
| 124 | + |
| 125 | +.reveal .controls div.down, |
| 126 | +.reveal .controls div.down.enabled { |
| 127 | + border-top-color: #01a9b4; } |
| 128 | + |
| 129 | +.reveal .controls div.left.enabled:hover { |
| 130 | + border-right-color: #f9b8bb; } |
| 131 | + |
| 132 | +.reveal .controls div.right.enabled:hover { |
| 133 | + border-left-color: #f9b8bb; } |
| 134 | + |
| 135 | +.reveal .controls div.up.enabled:hover { |
| 136 | + border-bottom-color: #f9b8bb; } |
| 137 | + |
| 138 | +.reveal .controls div.down.enabled:hover { |
| 139 | + border-top-color: #f9b8bb; } |
| 140 | + |
| 141 | +/********************************************* |
| 142 | + * PROGRESS BAR |
| 143 | + *********************************************/ |
| 144 | +.reveal .progress { |
| 145 | + background: rgba(0, 0, 0, 0.2); } |
| 146 | + |
| 147 | +.reveal .progress span { |
| 148 | + background: #01a9b4; |
| 149 | + -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); |
| 150 | + -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); |
| 151 | + -ms-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); |
| 152 | + -o-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); |
| 153 | + transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); } |
0 commit comments