Advertisement
StreckerCM

Timer CSS

Feb 19th, 2018
422
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.74 KB | None | 0 0
  1. /* COUNTDOWN TIMER CSS */
  2.  
  3. #timer {
  4.   margin: 0;
  5.   display: table;
  6.   div {
  7.     display: table-cell;
  8.     // STYLE NUMBERS
  9.     font-size: auto;
  10.     letter-spacing: 1px;
  11.     font-weight: auto;
  12.     color: #990000;
  13.     border-radius: 0px;
  14.     text-align: right;
  15.     span {
  16.     // STYLES DAYS, HOURS, MINUTES, SECONDS
  17.       letter-spacing: 0px;
  18.       color: #111111;
  19.       font-size: auto;
  20.       margin-left: 5px;
  21.       margin-right: 5px;
  22.       margin-top: 0px;
  23.       display: inline;
  24.     }
  25.   }
  26. }
  27. @media (max-width : 667px) {
  28.   #timer {
  29.     div {
  30.       padding: 16px;
  31.       font-size: 26px !important;
  32.       span {
  33.         margin-top: 2px;
  34.         font-size: 12px !important;
  35.       }
  36.     }
  37.   }
  38. }
  39.  
  40. /* END OF COUNTDOWN TIMER CSS */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement