| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- 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 rgba(183, 183, 183, 0.9);
- border-radius: 7px;
- box-shadow: 1px 2px gray;
- padding: 35px;
- }
- .card > *{
- margin: 10px;
- }
- #revenue{
- text-align: center;
- font-size: 25px;
- font-weight: bold;
- }
- #revenueChange{
- display: flex;
- }
- #revenueChange img{
- height: 15px;
- width: 15px;
- margin-right: 10px;
- }
- #graphCard{
- flex-grow: 1;
- }
- /* Ingredients Strand */
- #ingredientsStrand{
- display: none;
- }
- /* Recipe Book Strand */
- #recipeBookStrand{
- display: none;
- }
- /* Orders Strand */
- #ordersStrand{
- display: none;
- }
|