Host-customized fork of https://github.com/tecnovert/basicswap/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
836 B
58 lines
836 B
|
|
.padded_row td |
|
{ |
|
padding-top:1.5em; |
|
} |
|
|
|
.bold |
|
{ |
|
font-weight:bold; |
|
} |
|
|
|
.monospace |
|
{ |
|
font-family:monospace; |
|
} |
|
|
|
.floatright |
|
{ |
|
position: absolute; |
|
top:1.25rem; |
|
right:1.25rem; |
|
z-index: 9999; |
|
} |
|
|
|
.error |
|
{ |
|
} |
|
|
|
.error_msg |
|
{ |
|
color:red; |
|
} |
|
|
|
#hide { |
|
-moz-animation: cssAnimation 0s ease-in 15s forwards; |
|
/* Firefox */ |
|
-webkit-animation: cssAnimation 0s ease-in 15s forwards; |
|
/* Safari and Chrome */ |
|
-o-animation: cssAnimation 0s ease-in 15s forwards; |
|
/* Opera */ |
|
animation: cssAnimation 0s ease-in 15s forwards; |
|
-webkit-animation-fill-mode: forwards; |
|
animation-fill-mode: forwards; |
|
} |
|
@keyframes cssAnimation { |
|
to { |
|
width:0; |
|
height:0; |
|
overflow:hidden; |
|
} |
|
} |
|
@-webkit-keyframes cssAnimation { |
|
to { |
|
width:0; |
|
height:0; |
|
visibility:hidden; |
|
} |
|
} |