_statsTab.scss 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. .tab-panel {
  2. &.stats-panel {
  3. overflow-y : auto;
  4. }
  5. .stat-title1 {
  6. font-size : 1.1em;
  7. padding : 10px;
  8. }
  9. .stat-title2 {
  10. margin : 10px 0 10px 0;
  11. font-size : 1.05em;
  12. border-bottom : 1px solid $color-bot;
  13. box-sizing : border-box;
  14. }
  15. .stat-label {
  16. display : inline-block;
  17. width : 80%;
  18. padding : 2px;
  19. background-color: $background-lighter;
  20. border-bottom : 1px solid $background;
  21. border-top : 1px solid $background;
  22. height : 30px;
  23. line-height : 30px;
  24. box-sizing : border-box;
  25. }
  26. .stat-value {
  27. display : inline-block;
  28. width : 20%;
  29. padding : 2px;
  30. background-color: $background-lighter;
  31. border-top : 1px solid $background;
  32. border-bottom : 1px solid $background;
  33. height : 30px;
  34. line-height : 30px;
  35. box-sizing : border-box;
  36. }
  37. .stat-infos {
  38. width : 100%;
  39. padding : 4px;
  40. }
  41. }