dashboard.css 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. body{
  2. display: flex;
  3. flex-direction: row;
  4. font-family: 'Saira', sans-serif;
  5. }
  6. .menu{
  7. display: flex;
  8. flex-direction: column;
  9. align-items: center;
  10. max-width: 18vw;
  11. background: rgb(0, 27, 45);
  12. height: 100vh;
  13. }
  14. .menuHead{
  15. display: flex;
  16. justify-content: center;
  17. align-items: center;
  18. padding: 0 20px;
  19. margin-top: 0;
  20. font-size: 25px;
  21. font-weight: bold;
  22. color: white;
  23. margin-bottom: 100px;
  24. text-decoration: none;
  25. }
  26. .menu button{
  27. background: none;
  28. border-style: none;
  29. color: white;
  30. font-size: 20px;
  31. margin: 15px 0;
  32. padding: 0 0 0 50px;
  33. width: 100%;
  34. height: 75px;
  35. cursor: pointer;
  36. text-align: left;
  37. }
  38. .menu button:hover{
  39. background: rgb(201, 201, 201);
  40. color: black;
  41. }
  42. .menuHead img{
  43. max-width: 40%;
  44. max-height: 40%;
  45. }
  46. .logout{
  47. position: absolute;
  48. bottom: 25px;
  49. color: white;
  50. text-decoration: none;
  51. font-size: 20px;
  52. }
  53. /* Home Strand */
  54. #homeStrand{
  55. display: flex;
  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. }