| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- 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;
- }
- /* Purchase Strand */
- #purchaseStrand{
- flex-direction: column;
- align-items: space-between;
- }
- #purchaseStrand > *{
- margin: 10px;
- }
- .canvasBox{
- display: flex;
- justify-content: space-between;
- }
- #recipeOptions{
- flex-grow: 1;
- display: flex;
- flex-direction: column;
- }
|