|
|
|
@ -113,3 +113,112 @@ html, body, #root, main { |
|
|
|
|
height: 100%; |
|
|
|
|
width: 100%; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.remixui_copyButton { |
|
|
|
|
padding: 6px; |
|
|
|
|
font-weight: bold; |
|
|
|
|
font-size: 11px; |
|
|
|
|
line-height: 15px; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.remixui_contractHelperButtons { |
|
|
|
|
margin-top: 6px; |
|
|
|
|
display: flex; |
|
|
|
|
align-items: center; |
|
|
|
|
justify-content: space-between; |
|
|
|
|
float: right; |
|
|
|
|
} |
|
|
|
|
.remixui_copyToClipboard { |
|
|
|
|
font-size: 1rem; |
|
|
|
|
} |
|
|
|
|
.remixui_copyIcon { |
|
|
|
|
margin-right: 5px; |
|
|
|
|
} |
|
|
|
|
.remixui_log { |
|
|
|
|
display: flex; |
|
|
|
|
flex-direction: column; |
|
|
|
|
margin-bottom: 0.5rem; |
|
|
|
|
overflow: visible; |
|
|
|
|
} |
|
|
|
|
.remixui_key { |
|
|
|
|
margin-right: 5px; |
|
|
|
|
text-transform: uppercase; |
|
|
|
|
width: 100%; |
|
|
|
|
} |
|
|
|
|
.remixui_value { |
|
|
|
|
display: flex; |
|
|
|
|
width: 100%; |
|
|
|
|
margin-top: 1.5%; |
|
|
|
|
} |
|
|
|
|
.remixui_questionMark { |
|
|
|
|
margin-left: 2%; |
|
|
|
|
cursor: pointer; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@keyframes spin { |
|
|
|
|
0% { transform: rotate(0deg); } |
|
|
|
|
100% { transform: rotate(360deg); } |
|
|
|
|
} |
|
|
|
|
@-webkit-keyframes spin { |
|
|
|
|
0% { transform: rotate(0deg); } |
|
|
|
|
100% { transform: rotate(360deg); } |
|
|
|
|
} |
|
|
|
|
@-moz-keyframes spin { |
|
|
|
|
0% { transform: rotate(0deg); } |
|
|
|
|
100% { transform: rotate(360deg); } |
|
|
|
|
} |
|
|
|
|
@-o-keyframes spin { |
|
|
|
|
0% { transform: rotate(0deg); } |
|
|
|
|
100% { transform: rotate(360deg); } |
|
|
|
|
} |
|
|
|
|
@-ms-keyframes spin { |
|
|
|
|
0% { transform: rotate(0deg); } |
|
|
|
|
100% { transform: rotate(360deg); } |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.remixui_bouncingIcon { |
|
|
|
|
display: inline-block; |
|
|
|
|
position: relative; |
|
|
|
|
-moz-animation: bounce 2s infinite linear; |
|
|
|
|
-o-animation: bounce 2s infinite linear; |
|
|
|
|
-webkit-animation: bounce 2s infinite linear; |
|
|
|
|
animation: bounce 2s infinite linear; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@-webkit-keyframes bounce { |
|
|
|
|
0% { top: 0; } |
|
|
|
|
50% { top: -0.2em; } |
|
|
|
|
70% { top: -0.3em; } |
|
|
|
|
100% { top: 0; } |
|
|
|
|
} |
|
|
|
|
@-moz-keyframes bounce { |
|
|
|
|
0% { top: 0; } |
|
|
|
|
50% { top: -0.2em; } |
|
|
|
|
70% { top: -0.3em; } |
|
|
|
|
100% { top: 0; } |
|
|
|
|
} |
|
|
|
|
@-o-keyframes bounce { |
|
|
|
|
0% { top: 0; } |
|
|
|
|
50% { top: -0.2em; } |
|
|
|
|
70% { top: -0.3em; } |
|
|
|
|
100% { top: 0; } |
|
|
|
|
} |
|
|
|
|
@-ms-keyframes bounce { |
|
|
|
|
0% { top: 0; } |
|
|
|
|
50% { top: -0.2em; } |
|
|
|
|
70% { top: -0.3em; } |
|
|
|
|
100% { top: 0; } |
|
|
|
|
} |
|
|
|
|
@keyframes bounce { |
|
|
|
|
0% { top: 0; } |
|
|
|
|
50% { top: -0.2em; } |
|
|
|
|
70% { top: -0.3em; } |
|
|
|
|
100% { top: 0; } |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
#compileDetails { |
|
|
|
|
margin: 15px; |
|
|
|
|
padding: 15px; |
|
|
|
|
} |
|
|
|
|