A simple file sharing site with an easy to use API and online panel.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
767B

  1. .dash-row {
  2. display: flex;
  3. flex-wrap: nowrap;
  4. align-items: center;
  5. }
  6. .dash-card {
  7. background: #020202;
  8. border-radius: 4px;
  9. padding: 30px;
  10. margin: 5px;
  11. flex-grow: 1;
  12. display: flex;
  13. align-items: center;
  14. justify-content: center;
  15. border: 1px solid #2a9fd6;
  16. }
  17. #dash-singlestats {
  18. flex-grow: 1;
  19. }
  20. .dash-card.dash-card-singlestat {
  21. justify-content: space-between;
  22. }
  23. .dash-stat {
  24. align-self: flex-start;
  25. display: flex;
  26. flex-direction: column;
  27. justify-content: space-between;
  28. align-items: flex-start;
  29. }
  30. .dash-stat-title {
  31. font-size: 18px;
  32. }
  33. .dash-stat-value {
  34. font-size: 48px;
  35. }
  36. .dash-stat-icon {
  37. color: #2a9fd6;
  38. }
  39. #dash-historical {
  40. }
  41. .dash-card.dash-card-graph {
  42. width: 100px;
  43. }