Advertisement
Guest User

Untitled

a guest
Oct 25th, 2014
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1. .numbers {
  2. width: 55px;
  3. text-align: center;
  4. font-family: Arial;
  5. font-size: 28px;
  6. font-weight: bold; /* options are normal, bold, bolder, lighter */
  7. font-style: normal; /* options are normal or italic */
  8. color: #ffffff; /* change color using the hexadecimal color codes for HTML */
  9. }
  10. .title {/* the styles below will affect the title under the numbers, i.e., "Days", "Hours", etc. */
  11. width: 55px;
  12. text-align: center;
  13. font-family: Arial;
  14. font-size: 10px;
  15. font-weight: bold; /* options are normal, bold, bolder, lighter */
  16. color: #dddddd; /* change color using the hexadecimal color codes for HTML */
  17. }
  18. #table {
  19. width: 400px;
  20. height: 48px;
  21. border-style: none;
  22. background-color: transparent;
  23. margin: 0px auto;
  24. position: relative; /* leave as "relative" to keep timer centered on your page, or change to "absolute" then change the values of the "top" and "left" properties to position the timer */
  25. top: 0px; /* change to position the timer */
  26. left: 0px; /* change to position the timer; delete this property and it's value to keep timer centered on page */
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement