basicswap_miserver/basicswap/static/css/style.css

58 lines
836 B
CSS
Raw Normal View History

2022-10-10 21:44:14 +00:00
.padded_row td
{
padding-top:1.5em;
}
.bold
{
font-weight:bold;
}
.monospace
{
font-family:monospace;
}
.floatright
{
position: absolute;
top:1.25rem;
right:1.25rem;
2022-11-14 23:13:05 +00:00
z-index: 9999;
2022-10-10 21:44:14 +00:00
}
.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;
}
}