-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOnlineShop.css
More file actions
131 lines (109 loc) · 1.96 KB
/
OnlineShop.css
File metadata and controls
131 lines (109 loc) · 1.96 KB
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
.item-view {
display: grid;
grid-template-columns: repeat(3, 170px);
grid-template-rows: repeat(5, 206px);
grid-column-gap: 4%;
grid-row-gap: 2%;
float: left;
margin: 0;
}
.item-single {
display: block;
text-align: center;
color: white;
border: 5px solid white;
border-radius: 10%;
background-color: white;
}
.item-image {
height: 80%;
}
img {
max-width: 100%;
max-height: 100%;
border-radius: 5%;
}
.order-form {
float: right;
background-color: rgba(0, 0, 0, 0.329);
}
.view-blur {
backdrop-filter: blur(5px);
}
.footer {
clear: both;
}
fieldset {
color: white;
font-family: 'Lucida Sans';
font-size: 18px;
border: 4px solid lightcyan;
}
fieldset:first-child {
margin-right: 40px;
}
legend {
-webkit-text-stroke-width: 1px;
/* -webkit-text-stroke-color: black; */
}
label {
width: 170px;
display: inline-block;
text-align: right;
}
.customer-info {
width: 300px;
}
.receipt {
display: grid;
grid-template-columns: repeat(3, 155px);
grid-template-rows: repeat(6, 35px);
text-align: center;
grid-column-gap: 1%;
grid-row-gap: 10%;
margin-bottom: 140px;
}
.headings {
border: 1px solid black;
padding-top: 6px;
text-align: center;
font-weight: bold;
}
.total-display {
grid-column: 1 / span 2;
text-align: center;
}
.item-button {
height: 20%;
color: black;
font-family: arial;
font-size: 15px;
}
.item-button button {
height: 30px;
width: 30px;
border-radius: 30%;
font-weight: bold;
padding: 0;
}
.button-inline{
display: inline-block
}
.item-count {
width: 76px;
}
.big-button {
display: block;
width: 500px;
margin: 20px 0 10px 10px;
padding: 10px;
font-size: x-large;
}
h1 {
font-family: "Lucida Sans";
color: white;
text-align: center;
margin-top: 0;
padding: 10px 0;
background-color: rgba(0, 0, 0, 0.329);
}