删除 style.css

This commit is contained in:
索梦露 2026-01-08 01:13:01 +08:00
parent 7694d88b2c
commit bca678cdc7

View File

@ -1,68 +0,0 @@
body {
margin: 0;
font-family: "Segoe UI", "PingFang SC", sans-serif;
background: linear-gradient(135deg, #4facfe, #00f2fe);
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.container {
background: #ffffff;
width: 600px;
padding: 30px;
border-radius: 16px;
box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
h1 {
text-align: center;
margin-bottom: 5px;
}
.subtitle {
text-align: center;
color: #666;
margin-bottom: 20px;
}
textarea {
width: 100%;
height: 120px;
padding: 12px;
font-size: 14px;
border-radius: 8px;
border: 1px solid #ccc;
resize: none;
box-sizing: border-box;
}
button {
width: 100%;
margin-top: 15px;
padding: 12px;
background: #4facfe;
border: none;
color: white;
font-size: 16px;
border-radius: 8px;
cursor: pointer;
}
button:hover {
background: #00c6fb;
}
.result-box {
margin-top: 25px;
padding: 15px;
background: #f7f9fc;
border-radius: 8px;
}
#resultText {
margin-top: 10px;
color: #333;
white-space: pre-wrap;
}