mirror of
https://github.com/Moe-Sakura/frontend.git
synced 2026-03-19 05:39:45 +08:00
147 lines
2.3 KiB
CSS
147 lines
2.3 KiB
CSS
body {
|
|
background: #f0bbbb;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.hero-img {
|
|
width: 1000px;
|
|
margin: 0 auto;
|
|
background: #fff;
|
|
overflow: hidden;
|
|
border-bottom-left-radius: 8px;
|
|
border-bottom-right-radius: 8px;
|
|
box-shadow: 0 2px 8px #0001;
|
|
}
|
|
|
|
.hero-img img {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
|
|
.container,
|
|
#Comments {
|
|
box-sizing: border-box;
|
|
width: 1000px;
|
|
margin: 0 auto 16px auto;
|
|
background: #fff;
|
|
border-radius: 8px;
|
|
box-shadow: 0 2px 8px #0001;
|
|
padding: 32px;
|
|
}
|
|
|
|
.container .footer {
|
|
text-align: center;
|
|
color: #888;
|
|
}
|
|
|
|
.container h1 {
|
|
text-align: center;
|
|
color: #333;
|
|
}
|
|
|
|
.container a {
|
|
color: #4caf50;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.container a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
|
|
.container form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 16px;
|
|
}
|
|
|
|
.container label {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.container input[type="text"],
|
|
.container input[type="password"] {
|
|
padding: 8px;
|
|
border: 1px solid #ccc;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.container button {
|
|
padding: 10px 0;
|
|
background: #4caf50;
|
|
color: #fff;
|
|
border: none;
|
|
border-radius: 4px;
|
|
font-size: 1.1em;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.container button:disabled {
|
|
background: #aaa;
|
|
}
|
|
|
|
.container .results {
|
|
margin-top: 32px;
|
|
}
|
|
|
|
.container .platform {
|
|
border-left: 6px solid #ccc;
|
|
background: #fafafa;
|
|
margin-bottom: 18px;
|
|
padding: 12px 18px;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.container .platform.lime {
|
|
border-color: lime;
|
|
}
|
|
|
|
.container .platform.white {
|
|
border-color: #eee;
|
|
}
|
|
|
|
.container .platform.gold {
|
|
border-color: gold;
|
|
}
|
|
|
|
.container .platform.red {
|
|
border-color: red;
|
|
}
|
|
|
|
.container .platform-title {
|
|
font-size: 1.1em;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.container .error {
|
|
color: red;
|
|
margin-top: 12px;
|
|
}
|
|
|
|
.container .progress {
|
|
color: #888;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.container ul {
|
|
margin: 8px 0 0 0;
|
|
padding-left: 20px;
|
|
}
|
|
|
|
.container li {
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
@media (max-width: 960px) {
|
|
|
|
.container,
|
|
#Comments {
|
|
width: 100%;
|
|
}
|
|
|
|
.hero-img {
|
|
width: 100%;
|
|
border-radius: initial;
|
|
}
|
|
} |