123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200 |
- body {
- font-family: Georgia sans-serif;
- padding: 0;
- margin: 0;
- }
- #mainContainer {
- display: flex;
- }
- #aside {
- min-width: 20%;
- border-right: 1px solid lightgrey;
- }
- #aside > a {
- display: flex;
- justify-content: start;
- flex-direction: column;
- align-items: start;
- margin: 5px;
- }
- #main {
- display: flex;
- justify-content: center;
- flex-direction: column;
- align-items: center;
- text-align: center;
- width: 80%;
- }
- .loginInput, .pswInput {
- background-color: #fff;
- text-align: center;
- margin: 5px;
- width: 280px;
- height: 40px;
- font-size: 16px;
- border: 1px solid #ccc;
- }
- .buttonSend, .buttonBuy {
- margin: 10px;
- width: 280px;
- height: 40px;
- background-color: #792c9b;
- color: #fff;
- font-weight: 700;
- text-transform: uppercase;
- cursor: pointer;
- border: none;
- }
- .divQuestion {
- margin: 10px;
- color: grey;
- }
- .link {
- font-size: 14px;
- }
- .buttonBuy {
- height: 20px;
- width: 100px;
- }
- #header {
- height: 40px;
- border-bottom: 1px solid lightgrey;
- color: white;
- background-color: #f1dcff;
- display: flex;
- justify-content: space-around;
- align-items: center;
- }
- .cart{
- margin-right: 5%;
- width: 80px;
- }
- .cartImg{
- width: 40px;
- height: 40px;
- margin: 15px;
- }
- .enterToPrivate{
- margin-right: 5%;
- }
- .card{
- display: flex;
- justify-content: center;
- align-items: center;
- flex-direction: column;
- }
- .nameGategory{
- color: black;
- }
- .wrapperForCart{
- display: flex;
- justify-content: center;
- align-items: center;
- flex-direction: row;
- }
- .wrapperForCounter{
- display: flex;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- margin: 10px;
- }
- .buttonDeleteGood{
- border: none;
- background-color: white;
- font-size: 16px;
- cursor: pointer;
- }
- .inputChangeNumber{
- width: 40px;
- }
- .divDashboardOrders{
- display: flex;
- justify-content: center;
- flex-direction: row;
- align-items: center;
- font-size: 18px;
- font-weight: 400;
- margin-left: 10px;
- border: 1px solid #792c9b;
- height: 121px;
- width: 400px;
- }
- .imgGood{
- width: 80px;
- height: 80px;
- }
- .divDescriptionOrder{
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: start;
- margin: 10px;
- }
- .buttonLogOff{
- margin-left: 50px;
- width: 100px;
- height: 40px;
- background-color: #792c9b;
- color: white;
- border-radius: 50%;
- font-weight: 700;
- text-transform: uppercase;
- cursor: pointer;
- border: none;
- }
- .wrapperForPrivate{
- text-align: center;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .wrapperForCharacteristicGood{
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: start;
- margin-top: 15px;
- }
- .totalDiv{
- margin-left: 5px;
- }
- .divTime{
- font-size: 14px;
- margin-top: 5px;
- }
- .divName{
- font-size: 18px;
- font-style: italic;
- font-weight: 700;
- }
|