dickpic-rater-pro / style.css
rushkid5's picture
https://rushkid5-dickpic-rater-pro.static.hf.space/index.html
a4dbd12 verified
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
:root {
--gradient-start: #7e22ce;
--gradient-end: #3b82f6;
--card-bg: rgba(255, 255, 255, 0.05);
--border-color: rgba(255, 255, 255, 0.1);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Inter', sans-serif;
}
body {
background: linear-gradient(135deg, #1a0b2e 0%, #0d0630 100%);
color: white;
min-height: 100vh;
position: relative;
overflow-x: hidden;
}
body::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background:
radial-gradient(circle at 10% 20%, rgba(126, 34, 206, 0.1) 0%, transparent 20%),
radial-gradient(circle at 90% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 20%);
z-index: -1;
}
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: rgba(255, 255, 255, 0.05);
border-radius: 4px;
}
::-webkit-scrollbar-thumb {
background: linear-gradient(to bottom, var(--gradient-start), var(--gradient-end));
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: linear-gradient(to bottom, #9d4edd, #60a5fa);
}
/* Add styles for images */
img {
border-radius: 8px;
}
/* Add responsive adjustments */
@media (max-width: 768px) {
.max-w-4xl {
max-width: 100%;
}
.grid-cols-1 md:grid-cols-3 {
grid-template-columns: 1fr;
}
}
input, select, textarea {
background: rgba(30, 30, 40, 0.7) !important;
border: 1px solid rgba(255, 255, 255, 0.1) !important;
color: white !important;
}
input:focus, select:focus, textarea:focus {
border-color: #8b5cf6 !important;
box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.3) !important;
}
button {
transition: all 0.3s ease;
}
button:hover {
transform: translateY(-2px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}
.card {
background: var(--card-bg);
border: 1px solid var(--border-color);
backdrop-filter: blur(10px);
border-radius: 16px;
}
.glass {
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
}
.gradient-text {
background: linear-gradient(90deg, #8b5cf6, #60a5fa);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.animate-pulse-slow {
animation: pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes pulse {
0%, 100% {
opacity: 1;
}
50% {
opacity: 0.5;
}
}
@media (max-width: 768px) {
.container {
padding: 0 1rem;
}
h1 {
font-size: 2rem !important;
}
.grid {
grid-template-columns: 1fr;
}
}