| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- body, html{
- height: 100%;
- margin: 0;
- padding: 0;
- }
- #title{
- font-size: 45px;
- color: rgb(255, 99, 107);
- text-align: center;
- margin-top: 25px;
- }
- .checkboxDiv{
- display: flex;
- }
- .checkboxDiv > *{
- margin: 2px;
- }
- .dates{
- display: flex;
- justify-content: center;
- }
- .dates > *{
- margin: 10px;
- }
- canvas{
- flex-grow: 9;
- height: 64vh;
- }
- /* Home Strand */
- #homeStrand{
- flex-direction: column;
- align-items: center;
- }
- #homeStrand > *{
- margin: 15px;
- }
- .tables{
- display: flex;
- justify-content: space-around;
- width: 100%;
- }
- .dataTable{
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- /* Ingredient Strand */
- #ingredientStrand{
- flex-direction: column;
- align-items: space-between;
- }
- #ingredientStrand > *{
- margin: 10px;
- }
- .canvasBox{
- display: flex;
- justify-content: space-between;
- }
- #ingredientOptions{
- flex-grow: 1;
- display: flex;
- flex-direction: column;
- }
- /* Recipe Strand */
- #recipeStrand{
- flex-direction: column;
- align-items: space-between;
- }
- #recipeStrand > *{
- margin: 10px;
- }
- .canvasBox{
- display: flex;
- justify-content: space-between;
- }
- #recipeOptions{
- flex-grow: 1;
- display: flex;
- flex-direction: column;
- }
|