File size: 2,096 Bytes
7e2f64e |
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 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 |
/* Flexbox utilities */
.flex {
display: flex;
}
.flex-row {
flex-direction: row;
}
.flex-column {
flex-direction: column;
}
.justify-center {
justify-content: center;
}
.align-center {
align-items: center;
}
/* Grid utilities */
.grid {
display: grid;
}
.grid-cols {
grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 640px) {
.grid-cols {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}
@media (min-width: 768px) {
.grid-cols {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
}
.grid-cols-1 {
grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2 {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3 {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-cols-4 {
grid-template-columns: repeat(4, minmax(0, 1fr));
}
/* Gap utilities */
.gap-0 {
gap: 0;
}
.gap-1 {
gap: 0.25rem;
}
.gap-2 {
gap: 0.5rem;
}
.gap-3 {
gap: 0.75rem;
}
.gap-4 {
gap: 1rem;
}
/* Responsive container class */
.container {
width: 100%;
max-width: 1280px;
margin: 0 auto;
padding: 2rem;
}
.btn-error {
background-color: #c10c0c;
border-color: #c10c0c;
}
.btn-error:hover {
background-color: #a80c0c;
border-color: #a80c0c;
}
.btn-warning {
background-color: #c1a10c;
border-color: #c1a10c;
}
.btn-warning:hover {
background-color: #a88c0c;
border-color: #a88c0c;
}
.btn-success {
background-color: #0cc14e;
border-color: #0cc14e;
}
.btn-success:hover {
background-color: #0ca83d;
border-color: #0ca83d;
}
.image-container {
display: flex;
justify-content: center;
padding: 2rem;
}
#detected-objects-container {
position: absolute;
}
.bounding-box {
position: absolute;
border: 3px solid red;
}
.tooltip {
position: absolute;
bottom: 100%;
left: 50%;
transform: translateX(-50%);
background-color: rgba(0, 0, 0, 0.8);
color: white;
font-size: 12px;
font-weight: bold;
padding: 4px 8px;
border-radius: 4px;
white-space: nowrap;
opacity: 0;
transition: opacity 0.3s;
}
.bounding-box:hover .tooltip {
opacity: 1;
}
|