page1.scss 973 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. page-page1 {
  2. }
  3. .gauge-container {
  4. /* width: 150px;
  5. height: 150px; */
  6. display: block;
  7. /* padding: 10px; */
  8. }
  9. .gauge-container > .gauge > .dial {
  10. stroke: #eee;
  11. stroke-width: 20;
  12. fill: rgba(0,0,0,0);
  13. }
  14. .gauge-container > .gauge > .value {
  15. stroke: rgb(47, 227, 255);
  16. stroke-width: 20;
  17. fill: rgba(0,0,0,0);
  18. }
  19. .gauge-container > .gauge > .value-text {
  20. fill: rgb(47, 227, 255);
  21. font-family: sans-serif;
  22. font-weight: bold;
  23. font-size: 10em;
  24. }
  25. .gauge-container > .gauge > .title {
  26. fill: rgb(47, 227, 255);
  27. font-family: sans-serif;
  28. font-weight: bold;
  29. font-size: 5em;
  30. }
  31. /* ------- Alternate Style ------- */
  32. .gauge-container.two {
  33. }
  34. .gauge-container.two > .gauge > .dial {
  35. stroke: #334455;
  36. stroke-width: 100;
  37. }
  38. .gauge-container.two > .gauge > .value {
  39. stroke: orange;
  40. stroke-dasharray: none;
  41. stroke-width: 130;
  42. }
  43. .gauge-container.two > .gauge > .value-text {
  44. fill: orange;
  45. }
  46. .gauge-container.two > .gauge > .title {
  47. fill: orange;
  48. }