| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213 |
- .modal{
- flex-direction: column;
- justify-content: center;
- align-items: center;
- position: fixed;
- height: 100vh;
- width: 100vw;
- background: rgba(0, 27, 45, 0.75);
- }
- .modalBox{
- display: flex;
- flex-direction: column;
- align-items: flex-end;
- max-height: 90%;
- }
- .modalBox > svg{
- color: rgb(255, 99, 107);
- cursor: pointer;
- }
- #modalContent{
- max-height: 90%;
- }
- .modalSpreadsheetUpload{
- flex-direction: column;
- align-items: center;
- justify-content: space-between;
- margin-top: 0;
- padding: 25px 100px;
- background: rgb(240, 252, 255);
- border: 2px solid black;
- }
- .modalSpreadsheetUpload > *{
- margin-top: 15px;
- }
- #modalFeedback{
- display: flex;
- flex-direction: column;
- background: white;
- padding: 50px;
- }
- #modalFeedback > *{
- margin: 15px;
- }
- #modalFeedback label{
- display: flex;
- flex-direction: column;
- }
- #modalNewMerchant{
- display: flex;
- flex-direction: column;
- background: white;
- padding: 50px;
- min-width: 350px;
- }
- #modalNewMerchant h2{
- text-align: center;
- }
- #modalNewMerchant > *{
- margin: 15px;
- }
- #modalNewMerchant label{
- display: flex;
- flex-direction: column;
- }
- #modalConfirm{
- display: flex;
- flex-direction:column;
- align-items: center;
- background: white;
- padding: 50px;
- }
- #modalConfirm svg{
- font-size: 50px;
- margin: 15px;
- font-weight: bold;
- }
- #modalConfirm p{
- font-size: 25px;
- font-weight: bold;
- }
- #newMerchantSquareButton{
- background: white;
- border: none;
- display: flex;
- justify-content: center;
- align-items: center;
- border: 1px solid black;
- padding: 9px;
- cursor: pointer;
- margin-top: 0;
- margin-bottom: 0;
- height: 44px;
- }
- #newMerchantSquareButton:hover{
- background: black;
- color: white;
- }
- #modalSquareLocations{
- display: flex;
- flex-direction: column;
- align-items: center;
- background: white;
- padding: 50px;
- min-width: 350px;
- }
- #squareLocationsButtons{
- display: flex;
- flex-direction: column;
- margin-bottom: 25px;
- width: 100%;
- }
-
- #modalEditSubIngredients{
- flex-direction: column;
- align-items: center;
- background: white;
- min-width: 500px;
- max-height: 100%;
- }
- #editSubIngredientsContainer{
- display: flex;
- justify-content: space-around;
- width: 100%;
- height: 100%;
- overflow-y: auto;
- }
- #editSubIngredientsHeaders{
- display: flex;
- justify-content: space-around;
- width: 100%;
- }
- #editSubAllIng, #editSubCurrentIng{
- padding: 25px;
- width: 100%;
- overflow-y: auto;
- }
- #editSubAllIng > *{
- width: 100%;
- }
- #editSubCurrentIng > * {
- width: 100%;
- }
- #modalCircularReference{
- flex-direction: column;
- background: white;
- align-items: center;
- padding: 25px;
- max-height: 90%;
- overflow-y: auto;
- }
- #modalCircularReference div > *{
- margin: 10px;
- }
- #modalUnitConversion{
- flex-direction: column;
- background: white;
- align-items: center;
- padding: 25px;
- max-height: 90%;
- overflow-y: auto;
- }
- #unitConversions{
- width: 100%;
- }
- .convertUnitOption{
- display: flex;
- flex-direction: column;
- margin: 10px 0;
- border-bottom: 3px solid rgb(255, 99, 107);
- }
- .convertInputBox{
- margin: 0 10px;
- }
- .convertInputBox > input{
- max-width: 150px;
- }
- .convertUnitOption > div{
- display: flex;
- }
|