}
/* timer */
-.lp-timer {
+/* general styling */
+:root {
+ --smaller: .75;
+}
+
+* {
box-sizing: border-box;
margin: 0;
padding: 0;
+}
+
+html, body {
+ height: 100%;
+ margin: 0;
+}
+
+body {
align-items: center;
+ background-color: #ffd54f;
display: flex;
-
+ font-family: -apple-system,
+ BlinkMacSystemFont,
+ "Segoe UI",
+ Roboto,
+ Oxygen-Sans,
+ Ubuntu,
+ Cantarell,
+ "Helvetica Neue",
+ sans-serif;
}
.timer-container {
text-align: center;
}
-#h1 {
+h1 {
font-weight: normal;
letter-spacing: .125rem;
text-transform: uppercase;
}
-#li {
+li {
display: inline-block;
font-size: 1.5em;
list-style-type: none;
text-transform: uppercase;
}
-#li span {
+li span {
display: block;
font-size: 4.5rem;
}
+.emoji {
+ display: none;
+ padding: 1rem;
+}
+
+.emoji span {
+ font-size: 4rem;
+ padding: 0 .5rem;
+}
+
@media all and (max-width: 768px) {
h1 {
font-size: calc(1.5rem * var(--smaller));
font-size: calc(3.375rem * var(--smaller));
}
}
-
/* end timer */
.lp-signup {