样式调整

This commit is contained in:
fofolee 2020-06-14 10:31:57 +08:00
parent 806a9671ef
commit 983a7a8944

View File

@ -449,29 +449,80 @@ input::-webkit-input-placeholder {
cursor: pointer; cursor: pointer;
outline: none; outline: none;
color: white; color: white;
width: 60px;
} }
#options #customize button.cancelBtn { #options #customize button.cmdBtn {
float: right; float: right;
margin-right: 30px; margin: 0px 10px;
}
#options #customize button.cancel {
background: #808080c9; background: #808080c9;
} }
#options #customize button.saveBtn { #options #customize button.cancel:hover {
float: right; background: #a5a2a2c9;
transition: 0.5s;
}
#options #customize button.save {
background: #1E90FF; background: #1E90FF;
} }
#options #customize button.saveBtn:hover { #options #customize button.save:hover {
background: #5599FF; background: #5599FF;
transition: 0.5s; transition: 0.5s;
} }
#options #customize button.cancelBtn:hover { #options #customize button.run {
background: #a5a2a2c9; background: #15a86bc9;
}
#options #customize button.run:hover {
background: #27c583c9;
transition: 0.5s; transition: 0.5s;
} }
::-webkit-scrollbar { ::-webkit-scrollbar {
height: 0; height: 0;
}
li.CodeMirror-hint {
min-width: 200px;
font-size: 13px;
padding: 3px 4px;
}
@keyframes fadeInDown {
0% {
opacity: 0;
transform: translate3d(0, -100%, 0)
}
to {
opacity: 1;
transform: translateZ(0)
}
}
.fadeInDownWindow {
animation-name: fadeInDown;
animation-duration: 0.3s;
}
@keyframes fadeOutUp {
0% {
opacity: 1
}
to {
opacity: 0;
transform: translate3d(0, -100%, 0)
}
}
.fadeOutUpWindow {
animation-name: fadeOutUp;
animation-duration: 0.3s;
} }