Advertisement
kangjaz

css_countdown

Aug 18th, 2018
2,668
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.91 KB | None | 0 0
  1. <style type="text/css">
  2.      body {
  3.          background: #101123;
  4.          font-family: sans-serif;
  5.      }
  6.      .main {
  7.          margin:auto 10%;
  8.          padding-top: 8%;
  9.          text-align: center;
  10.          color: #696969;
  11.      }
  12.      h4 {
  13.          margin-bottom: 40px;
  14.          font-size: 30px;
  15.          color: #fff;
  16.      }
  17.      #clock > div {
  18.          border-radius: 5px;
  19.          background: #ffa500;
  20.          padding: 20px 20px 10px 20px;
  21.          color: #fff;
  22.          display: inline-block;
  23.      }
  24.      #clock > div > p {
  25.          font-size: 16px;
  26.      }
  27.      #days, #hours, #minutes, #seconds {
  28.          padding: 20px;
  29.          font-size: 20px;
  30.          background: #fb8e00;
  31.          display: inline-block;
  32.          width: 40px;
  33.      }
  34.      span.turn {
  35.          animation: turn 0.7s ease;
  36.      }
  37.      @keyframes turn {
  38.          0% {transform: rotateX(0deg)}
  39.          100% {transform: rotateX(360deg)}
  40.      }
  41. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement