dashboard.css 517 B

12345678910111213141516171819202122232425262728293031323334353637
  1. body{
  2. display: flex;
  3. flex-direction: row;
  4. font-family: 'Saira', sans-serif;
  5. }
  6. .logout{
  7. position: absolute;
  8. bottom: 25px;
  9. color: white;
  10. text-decoration: none;
  11. font-size: 20px;
  12. }
  13. .contentBlock{
  14. padding: 10px;
  15. }
  16. /* Home Strand */
  17. #homeStrand{
  18. display: flex;
  19. }
  20. /* Ingredients Strand */
  21. #ingredientsStrand{
  22. display: none;
  23. }
  24. /* Recipe Book Strand */
  25. #recipeBookStrand{
  26. display: none;
  27. }
  28. /* Orders Strand */
  29. #ordersStrand{
  30. display: none;
  31. }