-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadminproducts.css
More file actions
112 lines (94 loc) · 2.07 KB
/
adminproducts.css
File metadata and controls
112 lines (94 loc) · 2.07 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
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #e0f7fa, #e1bee7);
color: #2c3e50;
margin: 0;
padding: 0;
}
.header {
background-image: url('assets/img/bg_product.jpg'); /* Replace with your desired image path */
background-size: cover;
background-position: center;
color: #fff;
padding: 25px 50px;
text-align: center;
}
.button-box {
margin-top: 20px;
text-align: center;
}
.btn-grey {
background-color: #6c757d;
color: white;
padding: 10px 20px;
margin: 5px;
border-radius: 5px;
border: none;
}
.btn-grey:hover {
background-color: #5a6268;
}
.container {
margin: 50px auto;
max-width: 1100px;
padding: 30px;
background-image: url('assets/img/bg_product.jpg');
background-size: cover;
background-position: center;
border-radius: 15px;
color: #fff;
}
table img {
width: 70px;
border-radius: 12px;
}
.btn-edit, .btn-delete {
width: 80px;
}
.search-box {
margin-bottom: 20px;
width: 100%;
display: flex;
flex-direction: row-reverse;
}
.form-container {
display: flex;
flex-wrap: wrap;
gap: 20px;
justify-content: space-between;
}
.form-container .mb-3 {
flex: 1 1 45%; /* Adjust the width of each form element */
}
.form-container label {
font-weight: bold;
}
.form-container input, .form-container textarea {
width: 100%; /* Make sure input fields and textareas take the full width */
}
.quantity-box {
display: flex;
align-items: center;
}
.quantity-box form {
display: inline-block;
}
.quantity-box span {
margin: 0 10px;
}
.autocomplete-suggestions {
border: 1px solid #ddd;
max-height: 150px;
overflow-y: auto;
background-color: #fff;
position: absolute;
z-index: 1000;
width: 100%;
}
.autocomplete-suggestion {
padding: 10px;
cursor: pointer;
}
.autocomplete-suggestion:hover {
background-color: #f0f0f0;
}