dashboard.css 1.1 KB

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