summaryrefslogtreecommitdiff
path: root/components/OrderPage.css
blob: 6e7b0ca3d318483e69ee860bc8f43320004a1afa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
ul {
    list-style: none;
    padding: 0;
}

h3 {
    color: var(--color4);
    font-weight: normal;
    padding-top: 15px;
    font-size: 17px;
}

button {
    display: block;
    background-color: var(--color5);
    border: 0;
    width: 80%;
    margin: 16px 10%;
    padding: 12px 0;
    border-radius: 40px;
    color: var(--color3);
    font-size: 16px;
}

h2 {
    text-align: center;
    color: var(--secondaryColor);
    font-weight: normal;
    font-size: 20px;
    flex: 5;
    margin: 8px;
    text-align: center;
}

.empty {
    text-align: center;
    color: var(--color3)
}

ul {
    background-color: var(--color6);
    padding: 16px;
    margin: 12px;
    border-radius: 5px;
    box-shadow: 2px 2px 10px silver;
    
}

li {
    display: flex;
    border-bottom: 1px solid var(--color5);
}

li:last-child {
    border: 0;
}

.qty {
    color: var(--color4);
    flex: 1;
}

.name {
    font-weight: bold;
    color: var(--secondaryColor);
    flex: 5;
}

.total {
    font-weight: bold;
    color: var(--color3);
    flex: 5;
    text-align: right;
    margin-right: 16px;
    font-size: 17px;

}

.toolbar span {
    display: block;
    padding: 0 8px;
}

.price, .price-total {
    color: var(--secondaryColor);
    flex: 1;

    text-align: right;
}

.price-total {
    font-weight: bold;
    font-size: 17px;
    flex: 2;
    text-align: left;
}


a {
    text-decoration: none;
}

label, input {
    display: block;
    width: 90%;
    margin-left: 5%;
}

input {
    background-color: var(--color6);
    margin-bottom: 6px;
    font-size: large;
    border: 1px solid var(--color3);
    border-radius: 15px;
}