tou_schedules.css.scss 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. .month-fields {
  2. //display: none;
  3. }
  4. .summer-month-range-selection {
  5. //display: none;
  6. }
  7. .month-season-grid {
  8. display: inline-block;
  9. margin: 12px 0px 24px 12px;
  10. font-size: 0px; // Necessary to get rid of spaces between `inline-block` elements contained within
  11. border: 1px solid #ddd;
  12. }
  13. .grid-month {
  14. display: inline-block;
  15. margin: 0px;
  16. text-align: center;
  17. font-size: 1.5rem; // Necessary to override `font-size` set by container element (see above)
  18. .grid-month-name {
  19. margin: 3px auto 0px auto;
  20. font-weight: bold;
  21. }
  22. .grid-month-season {
  23. width: 42px;
  24. height: 42px;
  25. margin: 0px 6px 3px 6px;
  26. background-size: contain;
  27. background-repeat: no-repeat;
  28. background-position: center;
  29. }
  30. &.winter {
  31. background-color: #e8eeee;
  32. .grid-month-season {
  33. background-image: url('/assets/icon-snowflake.svg');
  34. }
  35. }
  36. &.summer {
  37. background-color: #fff;
  38. .grid-month-season {
  39. background-image: url('/assets/icon-sun.svg');
  40. }
  41. }
  42. }
  43. .tou-hours {
  44. table-layout: fixed;
  45. width: 420px;
  46. }