analytics.css 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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. }
  13. #analCategoriesTab{
  14. border-left: 3px solid rgb(255, 99, 107);
  15. border-right: 3px solid rgb(255, 99, 107);
  16. width: 131px;
  17. }
  18. .analContent{
  19. display: flex;
  20. justify-content: space-around;
  21. align-items:center;
  22. padding: 15px;
  23. box-sizing: border-box;
  24. height: 90%;
  25. }
  26. .itemsList{
  27. list-style-type: none;
  28. width: 15%;
  29. max-height: 95%;
  30. overflow-y: auto;
  31. }
  32. .analData{
  33. display: flex;
  34. flex-direction: column;
  35. justify-content: space-around;
  36. width: 100%;
  37. height: 100%;
  38. }
  39. #itemUseGraph{
  40. padding: 10px;
  41. height: 60%;
  42. flex-basis: 100px;
  43. flex-grow: 5;
  44. }
  45. .dataRow{
  46. display: flex;
  47. justify-content: space-between;
  48. flex-basis: 150px;
  49. flex-grow: 0;
  50. }
  51. .dataRow .analCard{
  52. display: flex;
  53. flex-direction: column;
  54. justify-content: space-around;
  55. margin: 5px;
  56. height: inherit;
  57. }
  58. .dataRow .analCard > *{
  59. margin: 0;
  60. }
  61. .analCard h1{
  62. text-align: center;
  63. }
  64. #analCategoriesGraph{
  65. margin-left: 25px;
  66. flex-grow: 2;
  67. height: 90%;
  68. width: 90%;
  69. }
  70. #analRecipeContent{
  71. display: flex;
  72. justify-content: space-around;
  73. align-items: center;
  74. padding: 15px;
  75. box-sizing: border-box;
  76. height: 90%;
  77. }