CoolFace
Apppublic

ChipGee/crispy-threads-couture

sourceHugging Faceupdated 11mo agoView on Hugging Face
0likes
style.css49 linesDownload Raw Back to root
1@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Raleway:wght@300;400;600;700&display=swap');2 3body {4    font-family: 'Raleway', sans-serif;5}6 7h1, h2, h3, h4 {8    font-family: 'Playfair Display', serif;9}10 11.toast-text {12    color: #FD8D3C;13}14 15.charcoal-text {16    color: #262626;17}18 19.btn-toast {20    background-color: #FD8D3C;21    color: white;22    transition: all 0.3s ease;23}24 25.btn-toast:hover {26    background-color: #E67329;27    transform: translateY(-2px);28}29 30.btn-charcoal {31    background-color: #262626;32    color: white;33    transition: all 0.3s ease;34}35 36.btn-charcoal:hover {37    background-color: #171717;38    transform: translateY(-2px);39}40 41.product-card {42    transition: all 0.3s ease;43    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);44}45 46.product-card:hover {47    transform: translateY(-5px);48    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);49}