dashboard.css 849 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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 gray;
  34. border-radius: 5px;
  35. box-shadow: 0 2px gray;
  36. padding: 25px;
  37. }
  38. /* Ingredients Strand */
  39. #ingredientsStrand{
  40. display: none;
  41. }
  42. /* Recipe Book Strand */
  43. #recipeBookStrand{
  44. display: none;
  45. }
  46. /* Orders Strand */
  47. #ordersStrand{
  48. display: none;
  49. }