Advertisement
Guest User

Untitled

a guest
Nov 24th, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. .nw {
  2. width:51px;
  3. height:457px;
  4. position:absolute;
  5. bottom:0;
  6. left:-75px;
  7. cursor:pointer;
  8. }
  9.  
  10. .game {
  11. position:relative;
  12. overflow:visible;
  13. }
  14.  
  15. .nw .countdown-section {
  16. width:31px;
  17. height:28px;
  18. line-height:28px;
  19. position:absolute;
  20. left:10px;
  21. text-align:center;
  22. color:#fff;
  23. font-size:17px;
  24. z-index:30;
  25. }
  26.  
  27. .nw .countdown-section:nth-child(1) {
  28. top:56px;
  29. }
  30.  
  31. .nw .countdown-section:nth-child(2) {
  32. top:101px;
  33. }
  34.  
  35. .nw .countdown-section:nth-child(3) {
  36. top:146px;
  37. }
  38.  
  39. .nw-hover {
  40. width:100%;
  41. height:100%;
  42. position:absolute;
  43. top:0;
  44. left:0;
  45. z-index:10;
  46. opacity:0;
  47. }
  48.  
  49. .nw-hover:hover {
  50. opacity:1;
  51. }
  52.  
  53.  
  54. ------
  55.  
  56. $('#tm').countdown({
  57. until: '+3h',
  58. format: 'hms',
  59. significant: 3,
  60. padZeroes: true
  61. });
  62.  
  63.  
  64. ------
  65.  
  66. <div class="nw" style="background:url(images/nw.png) no-repeat 0 0;">
  67. <div class="nw-timer" id="tm"></div>
  68. <a href="#" class="nw-hover" style="background:url(images/nw.png) no-repeat 0 bottom;"></a>
  69. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement