Dynamic food menu card UI built with:
- Oracle APEX
- PL/SQL Dynamic Region
- Custom CSS UI
- Discount & VAT pricing logic
✔ Dynamic menu cards
✔ Discount price calculation
✔ Category based image selection
✔ Responsive card UI
✔ Easy integration with POS system
Oracle APEX
PL/SQL
SQL
HTML
CSS
- Import SQL files from
/database - Upload images to APEX Static Files
- Import APEX page from
/apex/pages - Add CSS from
/frontend/css
frontend/css/combo-card.css
.combo-container{
display:flex;
flex-wrap:wrap;
gap:5px;
}
.combo-card{
width:150px;
border:1px solid #701c1c;
border-radius:8px;
background:#ddd;
box-shadow:0 3px 8px rgba(0,0,0,0.15);
overflow:hidden;
}
.combo-img img{
width:100%;
height:160px;
object-fit:cover;
}
.price-tag{
position:absolute;
top:5px;
right:5px;
background:#1e40af;
color:white;
padding:3px 5px;
font-size:13px;
border-radius:6px;
}
.price-tag .old{
text-decoration:line-through;
text-decoration-color:red;
text-decoration-thickness:2px;
}
.combo-body{
padding:10px;
text-align:center;
}