system-status-report-counters.css 557 B

123456789101112131415161718192021222324252627
  1. /**
  2. * @file
  3. * Styles for the system status report counters.
  4. */
  5. .system-status-report-counters__item {
  6. width: 100%;
  7. padding: 0.5em 0;
  8. text-align: center;
  9. white-space: nowrap;
  10. background-color: rgba(0, 0, 0, 0.063);
  11. margin-bottom: 0.5em;
  12. }
  13. @media screen and (min-width: 60em) {
  14. .system-status-report-counters {
  15. flex-wrap: wrap;
  16. display: flex;
  17. justify-content: space-between;
  18. }
  19. .system-status-report-counters__item--half-width {
  20. width: 49%;
  21. }
  22. .system-status-report-counters__item--third-width {
  23. width: 33%;
  24. }
  25. }