| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165 |
- html{
- height: 100%;
- }
- body{
- display: flex;
- flex-direction: row;
- font-family: 'Saira', sans-serif;
- height: 100%;
- }
- .contentBlock{
- width: 100%;
- height: 100vh;
- box-sizing: border-box;
- padding: 25px;
- }
- /* Cards */
- .card{
- margin: 15px;
- border: 1px solid rgba(183, 183, 183, 0.9);
- border-radius: 7px;
- box-sizing: border-box;
- box-shadow: 1px 2px gray;
- padding: 25px;
- flex-grow: 1;
- }
- .card > *{
- margin: 10px;
- }
- .card p:first-of-type{
- font-size: 14px;
- font-weight: bold;
- text-align: center;
- }
- /* Home Strand */
- #homeStrand{
- display: flex;
- flex-direction: column;
- max-height: 100%;
- width: 100%;
- }
- #homeStrand h1{
- text-align: left;
- margin: 15px;
- }
- .flexRow{
- display: flex;
- justify-content: space-around;
- width: 100%;
- }
- .flexColumn{
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- }
- #revenueCard{
- display: flex;
- flex-direction: column;
- justify-content: center;
- }
- #revenue{
- text-align: center;
- font-size: 30px;
- font-weight: bold;
- }
- #revenueChange{
- display: flex;
- }
- #revenueChange > p{
- font-weight: 100;
- }
- #revenueChange img{
- height: 15px;
- width: 15px;
- margin-right: 10px;
- }
- #graphCard{
- flex-grow: 1;
- max-height: 40vh;
- height: 100%;
- }
- #graphCard canvas{
- height: 95%;
- width: 100%;
- }
- #inventoryCheckCard{
- flex-grow: 0.1;
- }
- #inventoryCheckCard ul{
- list-style: none;
- }
- #inventoryCheckCard li{
- margin: 15px 0;
- }
- #inventoryCheckCard li > p{
- font-weight: 300;
- font-size: 15px;
- margin-right: 25px;
- }
- #inventoryCheckCard li > p:nth-of-type(1){
- width: 50%;
- }
- #inventoryCheckCard li input{
- width: 75px;
- margin-right: 25px;
- font-size: 20px;
- text-align: center;
- }
- #inventoryCheckCard li p:nth-of-type(2){
- width: 25%;
- min-width: 75px;
- }
- #inventoryCheckCard button{
- margin: 0;
- margin-top: 10px;
- float: right;
- height: 25px;
- padding: 0 29px;
- font-size: 15px;
- }
- #popularIngredientsCard{
- display: flex;
- flex-direction: column;
- align-items: center;
- height: 100%;
- }
- /* Ingredients Strand */
- #ingredientsStrand{
- display: none;
- }
- /* Recipe Book Strand */
- #recipeBookStrand{
- display: none;
- }
- /* Orders Strand */
- #ordersStrand{
- display: none;
- }
|