File size: 495 Bytes
b393735 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | body {
font-family: "Microsoft JhengHei", sans-serif;
background-color: #fff5e6;
text-align: center;
padding: 40px;
}
h1 {
color: #ff6600;
font-size: 36px;
}
button {
margin: 10px;
padding: 10px 20px;
font-size: 18px;
border: none;
background-color: #ffd966;
border-radius: 8px;
cursor: pointer;
}
button:hover {
background-color: #ff9900;
}
.story {
margin-top: 30px;
font-size: 20px;
color: #333;
min-height: 80px;
}
|