| 12345678910111213141516171819202122232425262728293031323334353637 |
- body{
- display: flex;
- flex-direction: row;
- font-family: 'Saira', sans-serif;
- }
- .logout{
- position: absolute;
- bottom: 25px;
- color: white;
- text-decoration: none;
- font-size: 20px;
- }
- .contentBlock{
- padding: 10px;
- }
- /* Home Strand */
- #homeStrand{
- display: flex;
- }
- /* Ingredients Strand */
- #ingredientsStrand{
- display: none;
- }
- /* Recipe Book Strand */
- #recipeBookStrand{
- display: none;
- }
- /* Orders Strand */
- #ordersStrand{
- display: none;
- }
|