_countdown.scss 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. @include respond-to('tablet') {
  2. .countdown-style-02 {
  3. .countdown-box {
  4. width: 145px;
  5. }
  6. }
  7. .countdown-style-04 {
  8. .countdown-box {
  9. width: 150px;
  10. }
  11. }
  12. }
  13. @include respond-to('phone-landscape') {
  14. .countdown-style-01 {
  15. .countdown {
  16. width: 100%;
  17. }
  18. .counter-container {
  19. display: block;
  20. width: 100%;
  21. .countdown-box {
  22. margin: 5% 5%;
  23. width: 40%;
  24. float: left;
  25. }
  26. }
  27. }
  28. .countdown-style-02, .countdown-style-04 {
  29. .countdown-box {
  30. width: 50%;
  31. margin:0 0 30px;
  32. span {
  33. position: relative;
  34. top: 0;
  35. }
  36. &:before {
  37. transform: none;
  38. top: 15px;
  39. }
  40. &:nth-child(2) {
  41. &:before {
  42. display: none;
  43. }
  44. }
  45. }
  46. }
  47. .countdown-style-03 {
  48. .countdown-box {
  49. width: 50%;
  50. margin: 0 0 30px;
  51. }
  52. }
  53. }