36 lines
522 B
SCSS
36 lines
522 B
SCSS
.container {
|
|
padding: 20px;
|
|
text-align: center;
|
|
background: #f5f5f5;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
.title {
|
|
font-size: 20px;
|
|
font-weight: 600;
|
|
color: #333;
|
|
margin-bottom: 30px;
|
|
display: block;
|
|
}
|
|
|
|
.button {
|
|
margin: 20px 0;
|
|
width: 200px;
|
|
height: 44px;
|
|
border-radius: 22px;
|
|
font-size: 16px;
|
|
}
|
|
|
|
.result {
|
|
margin-top: 30px;
|
|
padding: 20px;
|
|
background: #fff;
|
|
border-radius: 12px;
|
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
|
|
|
text {
|
|
font-size: 16px;
|
|
color: #333;
|
|
font-weight: 500;
|
|
}
|
|
} |