_statsTab.scss 1.3 KB

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