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.
130 lines
2.1 KiB
130 lines
2.1 KiB
|
|
.padded_row td |
|
{ |
|
padding-top:1.5em; |
|
} |
|
|
|
.bold |
|
{ |
|
font-weight:bold; |
|
} |
|
|
|
.monospace |
|
{ |
|
font-family:monospace; |
|
} |
|
|
|
.floatright |
|
{ |
|
position: fixed; |
|
top:1.25rem; |
|
right:1.25rem; |
|
z-index: 9999; |
|
} |
|
|
|
.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; |
|
} |
|
} |
|
|
|
.custom-select .select { |
|
appearance: none; |
|
background-image: url('/static/images/other/coin.png'); |
|
background-position: 10px center; |
|
background-repeat: no-repeat; |
|
position: relative; |
|
} |
|
|
|
.custom-select select::-webkit-scrollbar { |
|
width: 0; |
|
} |
|
|
|
.custom-select .select option { |
|
padding-left: 0; |
|
text-indent: 0; |
|
background-repeat: no-repeat; |
|
background-position: 0 50%; |
|
} |
|
|
|
.custom-select .select option.no-space { |
|
padding-left: 0; |
|
} |
|
|
|
.custom-select .select option[data-image] { |
|
background-image: url(''); |
|
} |
|
|
|
.custom-select .select-icon { |
|
position: absolute; |
|
top: 50%; |
|
left: 10px; |
|
transform: translateY(-50%); |
|
} |
|
|
|
.custom-select .select-image { |
|
display: none; |
|
margin-top: 10px; |
|
} |
|
|
|
.custom-select .select:focus + .select-dropdown .select-image { |
|
display: block; |
|
} |
|
|
|
|
|
/* Disable opacity on disabled form elements in Chrome */ |
|
@media screen and (-webkit-min-device-pixel-ratio:0) { |
|
select:disabled, |
|
input:disabled, |
|
textarea:disabled { |
|
opacity: 1 !important; |
|
} |
|
} |
|
|
|
/* Add this to your existing CSS file */ |
|
.error { |
|
border: 1px solid red !important; |
|
} |
|
|
|
.active-container { |
|
position: relative; |
|
border-radius: 5px; |
|
} |
|
|
|
.active-container::before { |
|
content: ""; |
|
position: absolute; |
|
top: 0; |
|
left: 0; |
|
right: 0; |
|
bottom: 0; |
|
border: 1px solid rgb(77, 132, 240); |
|
border-radius: inherit; |
|
pointer-events: none; |
|
} |
|
|
|
|