Files
mini-programs/src/components/TimePicker/demo.module.scss
2025-08-30 22:25:39 +08:00

81 lines
1.4 KiB
SCSS

.demoContainer {
padding: 20px;
text-align: center;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
color: white;
}
.title {
font-size: 24px;
font-weight: 700;
margin-bottom: 10px;
display: block;
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.subtitle {
font-size: 16px;
margin-bottom: 30px;
display: block;
opacity: 0.9;
}
.demoButton {
margin: 20px 0;
width: 250px;
height: 50px;
border-radius: 25px;
font-size: 18px;
font-weight: 600;
background: rgba(255, 255, 255, 0.2);
border: 2px solid rgba(255, 255, 255, 0.3);
color: white;
&:active {
background: rgba(255, 255, 255, 0.3);
transform: scale(0.98);
}
}
.demoResult {
margin: 30px 0;
padding: 20px;
background: rgba(255, 255, 255, 0.1);
border-radius: 16px;
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
text {
font-size: 18px;
font-weight: 600;
color: white;
}
}
.demoFeatures {
margin-top: 40px;
padding: 20px;
background: rgba(255, 255, 255, 0.1);
opacity: 0.9;
border-radius: 16px;
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
text-align: left;
}
.featureTitle {
font-size: 18px;
font-weight: 600;
margin-bottom: 15px;
display: block;
color: white;
}
.featureItem {
font-size: 14px;
margin: 8px 0;
display: block;
color: rgba(255, 255, 255, 0.9);
line-height: 1.5;
}