修复按钮样式问题。

main
PJ568 2 years ago committed by GitHub
parent 865a6bc671
commit ea7566443c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -127,11 +127,19 @@ p {
height:100% height:100%
} }
button {
cursor: pointer
}
button:hover { button:hover {
color:#ccc; color:#ccc;
background-color:#8a2023 background-color:#8a2023
} }
a {
cursor: pointer
}
a:hover { a:hover {
color:#ccc; color:#ccc;
background-color:#8a2023 background-color:#8a2023
@ -153,10 +161,10 @@ a:hover {
left: 0px; left: 0px;
width: 100%; width: 100%;
height: 100%; height: 100%;
z-index: 1000000; z-index: 1000000
} }
#loading_bg{ #loading_bg{
background-color: rgba(0,0,0,0.7); background-color: rgba(0,0,0,0.7)
} }
.loader { .loader {
width: 250px; width: 250px;
@ -172,7 +180,7 @@ a:hover {
text-transform: uppercase; text-transform: uppercase;
font-weight: 900; font-weight: 900;
color: #c5464a; color: #c5464a;
letter-spacing: 0.2em; letter-spacing: 0.2em
} }
.loader::before, .loader::after { .loader::before, .loader::after {
content: ""; content: "";
@ -182,13 +190,13 @@ a:hover {
background: #c5464a; background: #c5464a;
position: absolute; position: absolute;
-webkit-animation: load .7s infinite alternate ease-in-out; -webkit-animation: load .7s infinite alternate ease-in-out;
animation: load .7s infinite alternate ease-in-out; animation: load .7s infinite alternate ease-in-out
} }
.loader::before { .loader::before {
top: 0; top: 0
} }
.loader::after { .loader::after {
bottom: 0; bottom: 0
} }
@-webkit-keyframes load { @-webkit-keyframes load {

Loading…
Cancel
Save