You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. .expired-notice {
  2. text-align: center;
  3. padding: 2rem;
  4. border: 1px solid #ebebeb;
  5. border-radius: 0.25rem;
  6. margin: 0.5rem;
  7. }
  8. .expired-notice > span {
  9. font-size: 2.5rem;
  10. font-weight: bold;
  11. color: red;
  12. }
  13. .expired-notice > p {
  14. font-size: 1.5rem;
  15. }
  16. .show-counter {
  17. padding: 0.5rem;
  18. }
  19. .show-counter .countdown-link {
  20. display: flex;
  21. flex-direction: row;
  22. justify-content: center;
  23. align-items: center;
  24. padding: 0.5rem;
  25. text-decoration: none;
  26. }
  27. .show-counter .countdown {
  28. line-height: 1.25rem;
  29. padding: 0 0.75rem 0 0.75rem;
  30. align-items: center;
  31. display: flex;
  32. flex-direction: column;
  33. }
  34. .show-counter .countdown.danger {
  35. color: #ff0000;
  36. }
  37. .show-counter .countdown > p {
  38. margin: 0;
  39. }