mirror of
https://github.com/Moe-Sakura/frontend.git
synced 2026-04-05 08:35:06 +08:00
124 lines
1.7 KiB
CSS
124 lines
1.7 KiB
CSS
body {
|
|
font-family: Arial, sans-serif;
|
|
background: #f7f7f7;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.hero-img {
|
|
max-width: 864px;
|
|
margin: 0 auto;
|
|
background: #fff;
|
|
border-radius: 8px;
|
|
overflow: hidden;
|
|
box-shadow: 0 2px 8px #0001;
|
|
}
|
|
|
|
.hero-img img {
|
|
display: block;
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
.container {
|
|
max-width: 800px;
|
|
margin: 20px auto;
|
|
background: #fff;
|
|
border-radius: 8px;
|
|
box-shadow: 0 2px 8px #0001;
|
|
padding: 32px;
|
|
}
|
|
|
|
h1 {
|
|
text-align: center;
|
|
color: #333;
|
|
}
|
|
|
|
form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 16px;
|
|
}
|
|
|
|
label {
|
|
font-weight: bold;
|
|
}
|
|
|
|
input[type="text"],
|
|
input[type="password"] {
|
|
padding: 8px;
|
|
border: 1px solid #ccc;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.options {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
|
|
button {
|
|
padding: 10px 0;
|
|
background: #4caf50;
|
|
color: #fff;
|
|
border: none;
|
|
border-radius: 4px;
|
|
font-size: 1.1em;
|
|
cursor: pointer;
|
|
}
|
|
|
|
button:disabled {
|
|
background: #aaa;
|
|
}
|
|
|
|
.results {
|
|
margin-top: 32px;
|
|
}
|
|
|
|
.platform {
|
|
border-left: 6px solid #ccc;
|
|
background: #fafafa;
|
|
margin-bottom: 18px;
|
|
padding: 12px 18px;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.platform.lime {
|
|
border-color: lime;
|
|
}
|
|
|
|
.platform.white {
|
|
border-color: #eee;
|
|
}
|
|
|
|
.platform.gold {
|
|
border-color: gold;
|
|
}
|
|
|
|
.platform.red {
|
|
border-color: red;
|
|
}
|
|
|
|
.platform-title {
|
|
font-size: 1.1em;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.error {
|
|
color: red;
|
|
margin-top: 12px;
|
|
}
|
|
|
|
.progress {
|
|
color: #888;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
ul {
|
|
margin: 8px 0 0 0;
|
|
padding-left: 20px;
|
|
}
|
|
|
|
li {
|
|
margin-bottom: 4px;
|
|
} |