2022-09-19 18:48:03 +08:00
|
|
|
img.hitandrun {
|
|
|
|
|
width: 35px;
|
|
|
|
|
height: 12px;
|
|
|
|
|
background: url(icons.gif) no-repeat -100px -171px;
|
|
|
|
|
margin-left: 0.5em;
|
|
|
|
|
}
|
|
|
|
|
.spoiler-title {
|
|
|
|
|
line-height: 28px;
|
|
|
|
|
color: #4d6c99;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
background-color: rgba(77, 108, 153, 0.1);
|
|
|
|
|
display: inline-block;
|
|
|
|
|
padding: 0 10px;
|
|
|
|
|
}
|
|
|
|
|
.spoiler-content {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
height: 0;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
transition: height 0.3s ease;
|
|
|
|
|
}
|
|
|
|
|
.layui-layer {
|
|
|
|
|
color: black;
|
|
|
|
|
}
|
|
|
|
|
.layer-form {
|
|
|
|
|
padding: 10px 15px;
|
|
|
|
|
}
|
|
|
|
|
.layer-form .form-control-row input{
|
|
|
|
|
padding: 4px;
|
|
|
|
|
}
|
|
|
|
|
.layer-form .form-control-row .label{
|
|
|
|
|
margin-bottom: 4px;
|
|
|
|
|
}
|
|
|
|
|
.rainbow {
|
|
|
|
|
text-align: center;
|
|
|
|
|
text-decoration: underline;
|
|
|
|
|
/*font-size: 32px;*/
|
|
|
|
|
/*font-family: monospace;*/
|
|
|
|
|
/*letter-spacing: 5px;*/
|
|
|
|
|
background: linear-gradient(to right, #6666ff, #0099ff , #00ff00, #ff3399, #6666ff);
|
|
|
|
|
-webkit-background-clip: text;
|
|
|
|
|
background-clip: text;
|
|
|
|
|
color: transparent;
|
|
|
|
|
animation: rainbow_animation 6s ease-in-out infinite;
|
|
|
|
|
background-size: 400% 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes rainbow_animation {
|
|
|
|
|
0%,100% {
|
|
|
|
|
background-position: 0 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
50% {
|
|
|
|
|
background-position: 100% 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.nexus-media-info-raw {
|
|
|
|
|
padding: 0 0.5rem;
|
2022-09-19 18:52:05 +08:00
|
|
|
border: none;
|
2022-09-19 18:48:03 +08:00
|
|
|
}
|
|
|
|
|
.nexus-media-info-raw .spoiler-title-box{
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
2022-09-20 00:01:45 +08:00
|
|
|
.nexus-media-info-raw pre {
|
|
|
|
|
white-space: break-spaces;
|
2023-07-01 15:24:16 +08:00
|
|
|
overflow-wrap: anywhere;
|
2022-09-20 00:01:45 +08:00
|
|
|
}
|
2022-11-23 17:34:45 +08:00
|
|
|
.text-muted {
|
|
|
|
|
color: #7d7b7b
|
|
|
|
|
}
|
2023-07-30 14:28:19 +08:00
|
|
|
.codemain>pre {
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
2024-11-03 15:29:21 +08:00
|
|
|
.word-break-all {
|
2024-10-29 00:18:06 +08:00
|
|
|
word-break: break-all;
|
|
|
|
|
}
|
2025-05-11 21:21:29 +07:00
|
|
|
|
|
|
|
|
.form-box {
|
|
|
|
|
padding: 15px;
|
|
|
|
|
}
|
|
|
|
|
.form-control-row {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
padding: 10px 0;
|
|
|
|
|
}
|
|
|
|
|
.form-control-row .label {
|
|
|
|
|
width: 80px
|
|
|
|
|
}
|
|
|
|
|
.form-control-row .field {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
.form-control-row input[type=text],textarea {
|
|
|
|
|
width: 300px;
|
|
|
|
|
padding: 4px;
|
|
|
|
|
}
|
|
|
|
|
.form-control-row input[type=checkbox] {
|
|
|
|
|
vertical-align: sub;
|
|
|
|
|
}
|
2024-04-17 13:56:24 +08:00
|
|
|
|
|
|
|
|
.hidden-text {
|
|
|
|
|
filter: blur(.5em);
|
|
|
|
|
transition: filter .15s ease-in-out;
|
|
|
|
|
}
|
|
|
|
|
.hidden-text:hover {
|
|
|
|
|
filter: blur(0);
|
|
|
|
|
}
|