HumanBreak/src/styles.less

53 lines
949 B
Plaintext
Raw Normal View History

2022-11-30 16:42:44 +08:00
// 部分全局css特效
2022-11-14 17:11:23 +08:00
#root {
position: absolute;
display: none;
width: 100%;
height: 100%;
2022-11-21 20:00:34 +08:00
z-index: 1000;
2022-11-14 17:11:23 +08:00
justify-content: center;
align-items: center;
overflow: hidden;
2022-11-19 11:30:14 +08:00
transition: all 0.6s linear;
opacity: 0;
background-color: #000d;
2022-11-14 17:11:23 +08:00
}
2022-11-21 20:00:34 +08:00
.antdv-message {
font-family: 'normal';
font-size: 1.6em;
}
2022-11-30 16:42:44 +08:00
.button-text {
cursor: pointer;
transition: color 0.2s linear;
}
.button-text:hover {
color: aqua;
}
.button-text:active {
color: aquamarine;
}
.selectable[selected='true'] {
animation: selected alternate 5s infinite ease-in-out;
}
@keyframes selected {
0% {
border: #0ff7 0.5px solid;
background-color: rgba(39, 251, 209, 0.143);
}
50% {
border: #0ffa 0.5px solid;
background-color: rgba(39, 251, 209, 0.284);
}
100% {
border: #0ff7 0.5px solid;
background-color: rgba(39, 251, 209, 0.143);
}
}