-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
104 lines (89 loc) · 1.65 KB
/
style.css
File metadata and controls
104 lines (89 loc) · 1.65 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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
.main-card {
width: 100%;
justify-content: center;
align-items: center;
box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
transition: 0.2s;
cursor: pointer;
overflow: hidden;
}
.main-card:hover {
box-shadow: rgba(3, 102, 214, 0.3) 0px 2px 4px, rgba(3, 102, 214, 0.3) 0px 7px 13px -3px, rgba(3, 102, 214, 0.3) 0px -3px 0px inset;
}
.card-header {
width: 100%;
text-align: center;
background-color: #f0f0f0;
border-bottom: none;
}
.card-title {
line-height: 1.5em;
height: 3em; /* height is 2x line-height, so two lines will display */
overflow: hidden;
}
.image {
transition: 0.3s;
aspect-ratio: 1/1;
object-fit: contain ;
mix-blend-mode: darken;
}
.image:hover {
transform: scale(1.1);
}
.card-footer {
text-align: center;
width: 100%;
border: none;
background-color: transparent;
}
.btn {
background: #615EFC;
color: #fff;
font-weight: 600;
transition: all 0.4s ease-in-out;
}
.removeBtn {
background-color: transparent;
border: 2px solid #615EFC;
color: #615EFC;
}
.btn:hover {
color: #fff;
}
.green {
background-color: rgba(0, 128, 0, 0.826);
}
.green:hover {
background-color: green;
}
.error {
color: Red;
font-size: 15px;
display: none;
}
.show {
display: block;
}
.form-label {
font-size: 18px;
font-weight: 600;
}
/* ---------------- Product Form ---------------- */
.searchProduct,
.productForm,
.productTable {
background-color: #f0f0f0;
}
thead,
tbody,
tfoot,
tr,
td,
th {
border-style: none;
}