dashboard.css 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. html{
  2. height: 100%;
  3. }
  4. body{
  5. display: flex;
  6. flex-direction: row;
  7. font-family: 'Saira', sans-serif;
  8. height: 100%;
  9. }
  10. .contentBlock{
  11. padding: 25px;
  12. width: 100%;
  13. height: 100%;
  14. }
  15. /* Cards */
  16. .card{
  17. margin: 15px;
  18. border: 1px solid rgba(183, 183, 183, 0.9);
  19. border-radius: 7px;
  20. box-shadow: 1px 2px gray;
  21. padding: 25px;
  22. }
  23. .card > *{
  24. margin: 10px;
  25. }
  26. .card p:first-of-type{
  27. font-size: 14px;
  28. font-weight: bold;
  29. }
  30. /* Home Strand */
  31. #homeStrand{
  32. display: flex;
  33. flex-direction: column;
  34. height: 100%;
  35. width: 100%;
  36. }
  37. #homeStrand h1{
  38. text-align: left;
  39. }
  40. .flexRow{
  41. display: flex;
  42. justify-content: space-between;
  43. width: 100%;
  44. }
  45. .flexColumn{
  46. display: flex;
  47. flex-direction: column;
  48. justify-content: space-between;
  49. }
  50. #revenue{
  51. text-align: center;
  52. font-size: 30px;
  53. font-weight: bold;
  54. }
  55. #revenueChange{
  56. display: flex;
  57. }
  58. #revenueChange > p{
  59. font-weight: 100;
  60. }
  61. #revenueChange img{
  62. height: 15px;
  63. width: 15px;
  64. margin-right: 10px;
  65. }
  66. #graphCard{
  67. flex-grow: 1;
  68. max-height: 50vh;
  69. }
  70. #graphCard canvas{
  71. height: 95%;
  72. width: 100%;
  73. }
  74. #inventoryCheckCard ul{
  75. text-decoration: none;
  76. }
  77. /* Ingredients Strand */
  78. #ingredientsStrand{
  79. display: none;
  80. }
  81. /* Recipe Book Strand */
  82. #recipeBookStrand{
  83. display: none;
  84. }
  85. /* Orders Strand */
  86. #ordersStrand{
  87. display: none;
  88. }