anim-time-countdown
Version:
Animation time countdown
56 lines (51 loc) • 1.24 kB
CSS
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans",
"Droid Sans", "Helvetica Neue", sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace;
}
/* App */
.app {
background: #d3cce3; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #e9e4f0, #d3cce3); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(
to right,
#e9e4f0,
#d3cce3
); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
align-items: center;
bottom: 0;
display: flex;
left: 0;
position: fixed;
right: 0;
justify-content: center;
top: 0;
}
.app .number-item {
box-shadow: 0 12px 24px rgba(111, 111, 111, 0.8);
}
.app .wrapper::before {
color: #7e778f ;
line-height: 0;
position: relative;
text-shadow: 0 12px 24px rgba(111, 111, 111, 0.8);
top: -6px;
}
/* Content */
.content {
position: relative;
}
.content h1 {
color: #7e778f ;
left: 0;
font-size: 24px;
font-weight: 300;
right: 0;
position: absolute;
top: -50px;
}