165 lines
2.8 KiB
CSS
165 lines
2.8 KiB
CSS
.button {
|
|
line-height: 50px;
|
|
font-size: 14px;
|
|
}
|
|
button, .button {
|
|
margin: 10px;
|
|
width: 100px;
|
|
height: 50px;
|
|
border: none;
|
|
color: white;
|
|
text-align: center;
|
|
text-decoration: none;
|
|
display: inline-block;
|
|
border-radius: 10px;
|
|
background-color: #008CBA;
|
|
}
|
|
button:active, .button:active {
|
|
font-weight:bold;
|
|
background-color: #007CBA;
|
|
transform: translateY(2px);
|
|
}
|
|
label {
|
|
margin-left: 10px;
|
|
}
|
|
input,select {
|
|
margin-left: 5%;
|
|
margin-right: 5%;
|
|
margin-top: 10px;
|
|
margin-bottom: 10px;
|
|
width: 90%;
|
|
max-width: 400px;
|
|
height: 40px;
|
|
}
|
|
|
|
.rows {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
}
|
|
|
|
footer {
|
|
bottom: 0;
|
|
width: 100%;
|
|
text-align: center;
|
|
padding: 10px 0;
|
|
}
|
|
|
|
textarea{
|
|
margin-left: 5%;
|
|
margin-right: 5%;
|
|
margin-top: 10px;
|
|
margin-bottom: 10px;
|
|
width: 90%;
|
|
max-width: 400px;
|
|
height: 200px;
|
|
}
|
|
|
|
.custom-checkbox {
|
|
display: inline-block;
|
|
margin: 10px;
|
|
width: 20px;
|
|
height: 20px;
|
|
vertical-align: middle; /* 确保与标签垂直居中对齐 */
|
|
}
|
|
|
|
.checkbox-label {
|
|
display: inline-block;
|
|
width: 260px;
|
|
background-color: #fff;
|
|
border: 0px solid #ccc;
|
|
border-radius: 3px;
|
|
position: relative;
|
|
cursor: pointer;
|
|
vertical-align: middle; /* 确保与复选框垂直居中对齐 */
|
|
margin-left: 1px; /* 给复选框和标签之间一些距离,如果需要的话 */
|
|
}
|
|
|
|
.text {
|
|
margin: 10px;
|
|
width: 150px;
|
|
height: 50px;
|
|
text-align: center;
|
|
text-decoration: none;
|
|
display: inline-block;
|
|
}
|
|
|
|
.qrcode {
|
|
width: 100%;
|
|
max-width: 480px;
|
|
height: auto;
|
|
}
|
|
|
|
@keyframes blink {
|
|
0%, 100% { opacity: 1; }
|
|
50% { opacity: 0; }
|
|
}
|
|
|
|
.blink {
|
|
animation: blink 1s infinite;
|
|
}
|
|
|
|
.login-tips {
|
|
color: red;
|
|
font-size: 12px;
|
|
margin-left: 10px;
|
|
}
|
|
.login-tips a {
|
|
color: rgb(9, 105, 218);
|
|
text-decoration: underline;
|
|
}
|
|
#valid-host {
|
|
padding: 20px;
|
|
border: none;
|
|
border-radius: 10px;
|
|
background-color: #fff;
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
|
|
}
|
|
|
|
#valid-host::backdrop {
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
}
|
|
|
|
|
|
#valid-host form input {
|
|
width: fit-content;
|
|
margin: 0;
|
|
height: fit-content;
|
|
}
|
|
#valid-host p {
|
|
word-break: break-all;
|
|
}
|
|
#valid-host p span {
|
|
color: red;
|
|
}
|
|
#valid-host a, #valid-host a:visited {
|
|
color: rgb(9, 105, 218);;
|
|
text-decoration: underline;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
#valid-host a:hover {
|
|
color: rgb(9, 95, 198);
|
|
}
|
|
#valid-host .btn-list {
|
|
display: flex;
|
|
justify-content: center;
|
|
margin-top: 20px;
|
|
}
|
|
|
|
#valid-host .btn-list button {
|
|
width: fit-content;
|
|
min-width: 60px;
|
|
height: 40px;
|
|
border: none;
|
|
color: white;
|
|
text-align: center;
|
|
text-decoration: none;
|
|
display: inline-block;
|
|
border-radius: 10px;
|
|
background-color: #008CBA;
|
|
}
|
|
#valid-host .btn-list button:hover {
|
|
font-weight:bold;
|
|
background-color: #007CBA;
|
|
} |