-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
97 lines (83 loc) · 1.27 KB
/
Copy pathstyle.css
File metadata and controls
97 lines (83 loc) · 1.27 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
#fallback {
opacity: 0;
animation: showFallback 0s ease-in-out 5s forwards;
}
@keyframes showFallback {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.fullscreen {
width: 95dvw;
height: 95dvh;
display: flex;
justify-content: center;
align-items: center;
}
.filterable-products-table-container {
width: max(50%, 500px);
height: max(60%, 500px);
background-color: #d4d4d4;
border-radius: 50px;
display: flex;
flex-direction: column;
align-items: center;
font-size: 150%;
}
.search-area {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin: 10px;
width: 80%;
}
#search {
width: 75%;
text-align: center;
font-size: 100%;
}
.out-of-stock {
color: tomato;
}
.filterable-products-table {
width: 75%;
}
input[type="checkbox"] {
transform: scale(1.4);
margin-right: 10px;
}
label {
user-select: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
td {
background-color: #edecec;
border: 1px solid black;
flex: 1;
text-align: center;
padding: 3px;
}
thead {
width: 100%;
border-bottom: 2px solid black;
}
tbody {
width: 100%;
}
tr {
display: flex;
width: 100%;
}
th {
flex: 1;
background-color: #b2b2b2;
text-align: center;
padding: 3px;
}