site-state.styl 575 B

123456789101112131415161718192021222324252627282930313233
  1. .site-state {
  2. display: flex;
  3. justify-content: center;
  4. line-height: 1.4;
  5. margin-top: 10px;
  6. overflow: hidden;
  7. text-align: center;
  8. white-space: nowrap;
  9. }
  10. .site-state-item {
  11. padding: 0 15px;
  12. &:not(:first-child) {
  13. border-left: 1px solid $site-state-item-border-color;
  14. }
  15. a {
  16. border-bottom: none;
  17. }
  18. }
  19. .site-state-item-count {
  20. display: block;
  21. font-size: $site-state-item-count-font-size;
  22. font-weight: 600;
  23. text-align: center;
  24. }
  25. .site-state-item-name {
  26. color: $site-state-item-name-color;
  27. font-size: $site-state-item-name-font-size;
  28. }