This repository has been archived by the owner on Sep 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinventory.css
128 lines (112 loc) · 1.7 KB
/
inventory.css
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
#inventory {
width: 565px;
height: auto;
margin: auto;
}
.invBeerItem {
width: 545px;
height: 70px;
background-color: #D0D0D0;
border-radius: 5px;
margin: 2px;
}
.invBeerName {
width: 150px;
height: 20px;
float:left;
margin-top: 14px;
}
.invBeerSblPrice {
width: 75px;
height: 20px;
float:left;
margin-top: 8px;
}
.invBeerPubPrice {
width: 75px;
height: 20px;
float:left;
margin-top: 8px;
}
.invPriceWrapper {
width: 50px;
height: 50px;
float: left;
}
.invPriceText {
width: 50px;
height: 20px;
margin-top: 8px;
}
.invBeerPrice {
width: 60px;
height: 20px;
float:left;
}
.invCountWrapper {
width: 50px;
height: 50px;
float: left;
}
.invCountText {
width: 50px;
height: 20px;
margin-top: 8px;
}
.invBeerCount {
width: 50px;
height: 20px;
float:left;
}
.invEditWrapper {
width: 137px;
height: 35px;
float: left;
margin-top: 8px;
}
.invEdit {
width: 50px;
height: 20px;
border: solid 2px black;
float: left;
margin-top: 11px;
margin-left: 5px;
text-align: center;
cursor: pointer;
}
.invEditField {
width: 80px;
height: 30px;
float: left;
}
.invInputAmount {
width: 70px;
height: 22px;
float: left;
margin-top: 4px;
margin-left: 4px;
}
.invEditAccept {
width: 22px;
height: 17px;
background: url(images/accept-button.jpg);
background-size: cover;
border-radius: 50%;
float: left;
margin-top: 10px;
margin-left: 5px;
text-align: center;
cursor: pointer;
}
.invEditDecline {
width: 25px;
height: 17px;
background: url(images/delete-button.jpg);
background-size: cover;
border-radius: 50%;
float: left;
margin-top: 10px;
margin-left: 5px;
text-align: center;
cursor: pointer;
}