Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* COUNTDOWN TIMER CSS */
- #timer {
- margin: 0;
- display: table;
- div {
- display: table-cell;
- // STYLE NUMBERS
- font-size: auto;
- letter-spacing: 1px;
- font-weight: auto;
- color: #990000;
- border-radius: 0px;
- text-align: right;
- span {
- // STYLES DAYS, HOURS, MINUTES, SECONDS
- letter-spacing: 0px;
- color: #111111;
- font-size: auto;
- margin-left: 5px;
- margin-right: 5px;
- margin-top: 0px;
- display: inline;
- }
- }
- }
- @media (max-width : 667px) {
- #timer {
- div {
- padding: 16px;
- font-size: 26px !important;
- span {
- margin-top: 2px;
- font-size: 12px !important;
- }
- }
- }
- }
- /* END OF COUNTDOWN TIMER CSS */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement