analytics.css 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. .analTabButton{
  2. background: rgb(0, 27, 45);
  3. border: none;
  4. color: white;
  5. cursor: pointer;
  6. padding: 5px;
  7. width: 125px;
  8. }
  9. .analTabButton.active{
  10. background: rgb(179, 191, 209);
  11. color: black;
  12. box-shadow: inset 0 0 5px black;
  13. }
  14. #analCategoriesTab{
  15. border-left: 3px solid rgb(255, 99, 107);
  16. border-right: 3px solid rgb(255, 99, 107);
  17. width: 131px;
  18. }
  19. .analContent{
  20. display: flex;
  21. justify-content: space-around;
  22. align-items:center;
  23. padding: 15px;
  24. box-sizing: border-box;
  25. height: 90%;
  26. }
  27. .itemsList{
  28. list-style-type: none;
  29. width: 15%;
  30. max-height: 95%;
  31. overflow-y: auto;
  32. }
  33. .analData{
  34. display: flex;
  35. flex-direction: column;
  36. justify-content: space-around;
  37. width: 100%;
  38. height: 100%;
  39. }
  40. #itemUseGraph{
  41. padding: 10px;
  42. height: 60%;
  43. flex-basis: 100px;
  44. flex-grow: 5;
  45. }
  46. .dataRow{
  47. display: flex;
  48. justify-content: space-between;
  49. flex-basis: 150px;
  50. flex-grow: 0;
  51. }
  52. .dataRow .analCard{
  53. display: flex;
  54. flex-direction: column;
  55. justify-content: space-around;
  56. margin: 5px;
  57. height: inherit;
  58. }
  59. .dataRow .analCard > *{
  60. margin: 0;
  61. }
  62. .analCard h1{
  63. text-align: center;
  64. }
  65. #analRecipeContent{
  66. display: flex;
  67. justify-content: space-around;
  68. align-items: center;
  69. padding: 15px;
  70. box-sizing: border-box;
  71. height: 90%;
  72. }