Spaces:
Sleeping
Sleeping
/* Full Page Background - Dark Pink */ | |
body, html { | |
background-color: #d63384 ; /* Dark Pink */ | |
font-family: "Comic Sans MS", cursive, sans-serif; /* Cute Font */ | |
color: white; /* Default text color */ | |
height: 100%; | |
margin: 0; | |
display: flex; | |
justify-content: center; | |
align-items: center; | |
} | |
/* Centered Box - Lighter Pink with White Border */ | |
.container-box { | |
background-color: #f78fb3 ; /* Lighter Pink */ | |
border: 4px solid white ; /* White Border */ | |
border-radius: 20px; | |
padding: 40px; | |
width: 90%; | |
max-width: 450px; | |
text-align: center; | |
box-shadow: 0 0 20px rgba(255, 255, 255, 0.4); | |
} | |
/* Title Styling */ | |
.title { | |
font-size: 36px; | |
font-weight: bold; | |
text-align: center; | |
margin-bottom: 10px; | |
} | |
/* Description */ | |
.description { | |
font-size: 16px; | |
text-align: center; | |
margin-bottom: 20px; | |
} | |
/* Input Box - White with Dark Pink Border */ | |
input[type="text"], .gradio-input { | |
background-color: white ; /* White Input */ | |
border: 3px solid #d63384 ; /* Dark Pink Border */ | |
border-radius: 10px; | |
padding: 10px; | |
color: black ; /* Input text color */ | |
text-align: center; /* Center text */ | |
width: 80%; | |
max-width: 300px; | |
margin: 10px auto; | |
display: block; | |
} | |
/* Cute Buttons */ | |
button { | |
border-radius: 20px ; | |
background-color: #d63384 ; /* Dark Pink */ | |
color: white ; | |
font-size: 18px ; | |
padding: 10px 20px ; | |
transition: all 0.3s ease-in-out; | |
display: block; | |
margin: 10px auto; | |
border: 3px solid white; | |
} | |
button:hover { | |
background-color: #b82e72 ; /* Slightly Darker Pink */ | |
transform: scale(1.05); | |
} | |
/* Cute Output Styling */ | |
.result { | |
color: white; | |
font-size: 20px; | |
font-weight: bold; | |
padding-top: 10px; | |
text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.3); | |
text-align: center; | |
} | |
/* Make Sure Everything is Centered */ | |
.centered { | |
display: flex; | |
justify-content: center; | |
align-items: center; | |
height: 100vh; | |
} | |
/* Responsive Tweaks */ | |
@media (max-width: 768px) { | |
.container-box { | |
width: 90%; | |
} | |
.title { | |
font-size: 28px; | |
} | |
.description { | |
font-size: 14px; | |
} | |
.result { | |
font-size: 18px; | |
} | |
} | |