481 lines
7.8 KiB
CSS
481 lines
7.8 KiB
CSS
/* Marketplace Page - Prompt cards, filter buttons, full width layout */
|
|
|
|
.marketplace-main {
|
|
background: transparent !important;
|
|
padding: 20px 32px !important;
|
|
margin: 0 auto !important;
|
|
width: 100%;
|
|
max-width: 1400px;
|
|
}
|
|
|
|
/* Header centering */
|
|
.marketplace-header {
|
|
text-align: center;
|
|
margin-bottom: 24px;
|
|
}
|
|
.marketplace-header h1 {
|
|
font-size: 2rem;
|
|
font-weight: 700;
|
|
margin-bottom: 8px;
|
|
}
|
|
.marketplace-header p {
|
|
color: #64748b;
|
|
font-size: 1rem;
|
|
}
|
|
|
|
/* Filter + Sort Row */
|
|
.filter-sort-row {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
gap: 16px;
|
|
margin-bottom: 32px;
|
|
border-bottom: 1px solid #e5e7eb;
|
|
padding-bottom: 16px;
|
|
}
|
|
|
|
/* Filter buttons - centered */
|
|
.filter-buttons {
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 12px;
|
|
flex-wrap: wrap;
|
|
flex: 1;
|
|
margin: 0;
|
|
border-bottom: none;
|
|
padding-bottom: 0;
|
|
}
|
|
|
|
.filter-btn {
|
|
background: transparent;
|
|
border: none;
|
|
padding: 8px 20px;
|
|
font-size: 0.9rem;
|
|
font-weight: 600;
|
|
color: #64748b;
|
|
cursor: pointer;
|
|
border-radius: 30px;
|
|
transition: all 0.2s;
|
|
}
|
|
.filter-btn.active {
|
|
background: var(--gradient);
|
|
color: white;
|
|
}
|
|
.filter-btn:hover:not(.active) {
|
|
background: #f1f5f9;
|
|
}
|
|
|
|
/* Sort Dropdown - right aligned */
|
|
.sort-dropdown {
|
|
background: #f8fafc;
|
|
border: 1px solid #e2e8f0;
|
|
border-radius: 30px;
|
|
padding: 8px 16px;
|
|
font-size: 0.9rem;
|
|
font-weight: 500;
|
|
color: #334155;
|
|
cursor: pointer;
|
|
outline: none;
|
|
margin-left: auto;
|
|
}
|
|
|
|
/* Prompts grid */
|
|
.prompts-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
|
|
gap: 24px;
|
|
}
|
|
|
|
/* Prompt card */
|
|
.prompt-card {
|
|
background: #fff;
|
|
border-radius: 18px;
|
|
box-shadow: 0 2px 8px rgba(59, 130, 246, 0.06);
|
|
overflow: hidden;
|
|
transition:
|
|
transform 0.2s,
|
|
box-shadow 0.2s;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.prompt-card:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 8px 20px rgba(59, 130, 246, 0.12);
|
|
}
|
|
|
|
.prompt-img {
|
|
width: 100%;
|
|
height: 160px;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.prompt-info {
|
|
padding: 16px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
}
|
|
|
|
.prompt-title {
|
|
font-size: 1.2rem;
|
|
font-weight: 700;
|
|
margin: 0;
|
|
}
|
|
|
|
.prompt-author {
|
|
color: #64748b;
|
|
font-size: 0.85rem;
|
|
}
|
|
|
|
.prompt-description {
|
|
color: #334155;
|
|
font-size: 0.85rem;
|
|
line-height: 1.4;
|
|
margin: 0;
|
|
display: -webkit-box;
|
|
-webkit-line-clamp: 2;
|
|
-webkit-box-orient: vertical;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.prompt-rating {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
font-size: 0.85rem;
|
|
color: #f59e0b;
|
|
}
|
|
.prompt-rating span:first-child i {
|
|
color: #f59e0b;
|
|
}
|
|
.prompt-rating span:last-child {
|
|
color: #64748b;
|
|
}
|
|
|
|
.prompt-price {
|
|
font-size: 1.3rem;
|
|
font-weight: 700;
|
|
color: #3b82f6;
|
|
margin: 8px 0 4px;
|
|
}
|
|
|
|
.prompt-actions {
|
|
display: flex;
|
|
gap: 12px;
|
|
margin-top: 8px;
|
|
}
|
|
.buy-btn,
|
|
.details-btn {
|
|
flex: 1;
|
|
border: none;
|
|
border-radius: 14px;
|
|
padding: 8px 12px;
|
|
font-size: 0.85rem;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
transition: opacity 0.2s;
|
|
}
|
|
.buy-btn {
|
|
background: var(--gradient);
|
|
color: white;
|
|
}
|
|
.details-btn {
|
|
background: #f1f5f9;
|
|
color: #334155;
|
|
}
|
|
.buy-btn:hover,
|
|
.details-btn:hover {
|
|
opacity: 0.85;
|
|
}
|
|
|
|
/* Responsive */
|
|
@media (max-width: 700px) {
|
|
.filter-sort-row {
|
|
flex-direction: column;
|
|
align-items: stretch;
|
|
}
|
|
.sort-dropdown {
|
|
align-self: flex-end;
|
|
margin-left: 0;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.marketplace-main {
|
|
padding: 16px !important;
|
|
}
|
|
.filter-btn {
|
|
padding: 6px 14px;
|
|
font-size: 0.8rem;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 480px) {
|
|
.marketplace-main {
|
|
padding: 12px !important;
|
|
}
|
|
.prompt-actions {
|
|
flex-direction: column;
|
|
}
|
|
}
|
|
|
|
/* Payment method buttons */
|
|
.pay-method-btn {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
width: 100%;
|
|
padding: 14px 16px;
|
|
background: #f8fafc;
|
|
border: 1px solid #e2e8f0;
|
|
border-radius: 12px;
|
|
font-size: 0.95rem;
|
|
font-weight: 600;
|
|
color: #1e293b;
|
|
cursor: pointer;
|
|
transition:
|
|
border-color 0.2s,
|
|
background 0.2s;
|
|
text-align: left;
|
|
}
|
|
.pay-method-btn:hover {
|
|
border-color: #6366f1;
|
|
background: #f5f3ff;
|
|
}
|
|
|
|
/* ── Payment Modal ──────────────────────────────────────────────────── */
|
|
#payment-overlay {
|
|
display: none;
|
|
position: fixed;
|
|
inset: 0;
|
|
background: rgba(0, 0, 0, 0.5);
|
|
z-index: 1000;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.payment-modal {
|
|
background: #fff;
|
|
border-radius: 16px;
|
|
padding: 32px;
|
|
max-width: 460px;
|
|
width: 90%;
|
|
position: relative;
|
|
max-height: 90vh;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.payment-close-btn {
|
|
position: absolute;
|
|
top: 14px;
|
|
right: 18px;
|
|
background: none;
|
|
border: none;
|
|
font-size: 1.4rem;
|
|
cursor: pointer;
|
|
color: #64748b;
|
|
}
|
|
|
|
.payment-title {
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
#pay-prompt-title {
|
|
color: #6366f1;
|
|
font-weight: 600;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.payment-intro {
|
|
color: #64748b;
|
|
margin-bottom: 24px;
|
|
}
|
|
|
|
.payment-method-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 12px;
|
|
}
|
|
|
|
.pay-crypto-icon {
|
|
font-size: 1.4rem;
|
|
}
|
|
|
|
.pay-method-price {
|
|
margin-left: auto;
|
|
font-size: 0.85rem;
|
|
color: #94a3b8;
|
|
}
|
|
|
|
.payment-disclaimer {
|
|
margin-top: 20px;
|
|
font-size: 0.8rem;
|
|
color: #94a3b8;
|
|
text-align: center;
|
|
}
|
|
|
|
#pay-step-2 {
|
|
display: none;
|
|
}
|
|
|
|
.payment-back-btn {
|
|
background: none;
|
|
border: none;
|
|
color: #6366f1;
|
|
cursor: pointer;
|
|
margin-bottom: 16px;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
#pay-crypto-title {
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.payment-amount-text {
|
|
color: #64748b;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.payment-address-box {
|
|
background: #f1f5f9;
|
|
border-radius: 10px;
|
|
padding: 14px 16px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
#pay-address {
|
|
font-size: 0.85rem;
|
|
word-break: break-all;
|
|
flex: 1;
|
|
}
|
|
|
|
.payment-copy-btn {
|
|
background: none;
|
|
border: none;
|
|
cursor: pointer;
|
|
color: #6366f1;
|
|
font-size: 1.1rem;
|
|
}
|
|
|
|
.payment-warning-text {
|
|
font-size: 0.78rem;
|
|
color: #94a3b8;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.payment-info-box {
|
|
background: #fef9c3;
|
|
border: 1px solid #fde68a;
|
|
border-radius: 10px;
|
|
padding: 12px 14px;
|
|
font-size: 0.82rem;
|
|
color: #92400e;
|
|
margin-bottom: 20px;
|
|
}
|
|
.payment-confirm-btn {
|
|
width: 100%;
|
|
padding: 12px;
|
|
background: #6366f1;
|
|
color: #fff;
|
|
border: none;
|
|
border-radius: 10px;
|
|
font-weight: 600;
|
|
font-size: 1rem;
|
|
cursor: pointer;
|
|
}
|
|
#pay-step-3 {
|
|
display: none;
|
|
text-align: center;
|
|
padding: 20px 0;
|
|
}
|
|
.payment-success-icon {
|
|
font-size: 3.5rem;
|
|
color: #10b981;
|
|
display: block;
|
|
margin-bottom: 16px;
|
|
}
|
|
.payment-success-title {
|
|
margin-bottom: 8px;
|
|
}
|
|
.payment-success-desc {
|
|
color: #64748b;
|
|
margin-bottom: 24px;
|
|
}
|
|
.payment-done-btn {
|
|
padding: 12px 28px;
|
|
background: #6366f1;
|
|
color: #fff;
|
|
border: none;
|
|
border-radius: 10px;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
}
|
|
.market-card-header {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
margin-bottom: 8px;
|
|
}
|
|
.market-card-avatar {
|
|
width: 34px;
|
|
height: 34px;
|
|
border-radius: 50%;
|
|
background: #6366f1;
|
|
color: #fff;
|
|
font-weight: 700;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 0.95rem;
|
|
flex-shrink: 0;
|
|
}
|
|
.market-card-time {
|
|
margin-left: auto;
|
|
font-size: 0.75rem;
|
|
color: #94a3b8;
|
|
}
|
|
.market-card-rating {
|
|
margin-bottom: 12px;
|
|
}
|
|
.market-rating-none {
|
|
color: #94a3b8;
|
|
font-size: 0.8rem;
|
|
}
|
|
.market-rating-clickable {
|
|
cursor: pointer;
|
|
}
|
|
.market-rating-stars {
|
|
color: #f59e0b;
|
|
}
|
|
.buy-btn-locked {
|
|
background: #ef4444 !important;
|
|
}
|
|
.buy-btn-unlocked {
|
|
background: #10b981 !important;
|
|
}
|
|
.market-price-badge {
|
|
background: #fef3c7;
|
|
color: #92400e;
|
|
border-radius: 20px;
|
|
padding: 4px 14px;
|
|
font-size: 0.8rem;
|
|
font-weight: 600;
|
|
}
|
|
.market-heart-icon {
|
|
color: #ef4444;
|
|
}
|
|
.market-bookmark-icon {
|
|
color: #f59e0b;
|
|
}
|
|
.market-save-span {
|
|
margin-left: 12px;
|
|
}
|
|
.details-btn[disabled] {
|
|
opacity: 0.45;
|
|
cursor: not-allowed;
|
|
}
|