| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- body{
- display: flex;
- flex-direction: row;
- font-family: 'Saira', sans-serif;
- }
- .contentBlock{
- padding: 25px;
- width: 100%;
- }
- /* Home Strand */
- #homeStrand{
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- height: 100%;
- width: 100%;
- }
- #homeStrand h1{
- text-align: left;
- }
- .flexRow{
- display: flex;
- justify-content: space-between;
- width: 100%;
- }
- .flexColumn{
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- }
- .card{
- margin: 15px;
- border: 1px solid gray;
- border-radius: 5px;
- box-shadow: 0 2px gray;
- padding: 25px;
- }
- /* Ingredients Strand */
- #ingredientsStrand{
- display: none;
- }
- /* Recipe Book Strand */
- #recipeBookStrand{
- display: none;
- }
- /* Orders Strand */
- #ordersStrand{
- display: none;
- }
|