_panel_singlestat.scss 673 B

12345678910111213141516171819202122232425262728293031323334
  1. .singlestat-panel {
  2. position: relative;
  3. display: table;
  4. width: 100%;
  5. height: 100%;
  6. }
  7. .singlestat-panel-value-container {
  8. line-height: 1;
  9. display: table-cell;
  10. vertical-align: middle;
  11. text-align: center;
  12. position: relative;
  13. z-index: 1;
  14. font-size: 3em;
  15. font-weight: $font-weight-semi-bold;
  16. // helps make the title feel more centered when there is a panel title
  17. padding-bottom: $panel-padding;
  18. }
  19. // Helps
  20. .panel-container--no-title {
  21. .singlestat-panel-value-container {
  22. padding-bottom: 0;
  23. }
  24. }
  25. .singlestat-panel-prefix {
  26. padding-right: 20px;
  27. }
  28. #flotGagueValue0 {
  29. font-weight: $font-weight-semi-bold; //please dont hurt me for this!
  30. }