File size: 1,566 Bytes
9839720 2ef5a1e 9839720 2ef5a1e 9839720 2ef5a1e 9839720 2ef5a1e 9839720 2ef5a1e 9839720 2ef5a1e 9839720 |
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 |
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: 'Inter', sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* Animation for panel */
@keyframes slideDown {
from {
opacity: 0;
transform: translateY(-10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
#contextPanel {
animation: slideDown 150ms ease-out forwards;
}
/* Tab styling */
.tab-btn {
transition: all 150ms ease;
}
.tab-btn.active-tab {
border-bottom-color: #2563EB;
color: #E6E6E6;
}
/* Product card styling */
.product-card {
transition: all 150ms ease;
border: 1px solid #2B2C2F;
}
.product-card:hover {
border-color: #2563EB;
transform: translateY(-2px);
}
.product-card.selected {
border-color: #2563EB;
background-color: rgba(37, 99, 235, 0.08);
}
/* Chip buttons */
.chip-btn {
transition: all 150ms ease;
}
.chip-btn:hover {
border-color: #2563EB;
color: #E6E6E6;
}
/* Scrollbar styling */
::-webkit-scrollbar {
width: 6px;
height: 6px;
}
::-webkit-scrollbar-track {
background: #1E1F23;
border-radius: 3px;
}
::-webkit-scrollbar-thumb {
background: #2B2C2F;
border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
background: #3B3C3F;
}
/* Focus styles */
button:focus, input:focus, textarea:focus, select:focus {
outline: 2px solid #2563EB;
outline-offset: 2px;
} |