dantheguy's picture
create a website where you can search a database of films to check for potential triggers of emetophobia (a fear of vomit). Don't use the word vomit unless censored (e.g. v*mit). Make it searchable and make it easy to users to contribute to the database.
e4224e2 verified
raw
history blame contribute delete
915 Bytes
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Poppins', sans-serif;
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #1a1a1a;
}
::-webkit-scrollbar-thumb {
background: #d946ef;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #c026d3;
}
/* Animation for search results */
@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
.movie-card {
animation: fadeIn 0.3s ease-out forwards;
opacity: 0;
}
.movie-card:nth-child(1) { animation-delay: 0.1s; }
.movie-card:nth-child(2) { animation-delay: 0.2s; }
.movie-card:nth-child(3) { animation-delay: 0.3s; }
.movie-card:nth-child(4) { animation-delay: 0.4s; }
.movie-card:nth-child(5) { animation-delay: 0.5s; }