ordertrack-pro / style.css
Skyd3d's picture
create for me something that caan be directly attached to my ssamsung notification bar, where has 3 rows and multiple colums, first name will be order, second row, order completed and 3rd row will be named as order paid, so i can just press the plus icon and new colum is created where ica n write the name of order with customer name , and it should be free,
36002a8 verified
raw
history blame contribute delete
717 Bytes
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Inter', sans-serif;
}
.dark {
--tw-bg-opacity: 1;
background-color: rgba(17, 24, 39, var(--tw-bg-opacity));
}
.order-card {
transition: all 0.2s ease;
}
.order-card:hover {
transform: translateY(-2px);
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: #1F2937;
}
::-webkit-scrollbar-thumb {
background: #4B5563;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #6B7280;
}