diff --git a/css/styles.css b/css/styles.css index 3463a46..bf56207 100644 --- a/css/styles.css +++ b/css/styles.css @@ -166,6 +166,77 @@ button } +.connection_status +{ + width: 100%; + margin-bottom: 20px; + + text-align: center; +} + + +.connection_status span +{ + position: relative; + + display: none; + + padding-left: 15px; + + vertical-align: top; +} + + +.connection_status span:before +{ + position: absolute; + top: 0; + bottom: 0; + left: 0; + + display: block; + + width: 5px; + height: 5px; + margin: auto 0; + + content: ''; + + border-radius: 50%; +} + + +.connection_status span.green:before +{ + background: green; +} + +.connection_status span.red:before +{ + background: red; +} + + +.connection_status span.show +{ + display: inline-block; +} + + +.tx_result +{ + width: 100%; + margin-bottom: 20px; + + text-align: center; +} + +.tx_result:empty +{ + display: none; +} + + #address { width: 100%; diff --git a/index.html b/index.html index b8c6b00..9a01a19 100644 --- a/index.html +++ b/index.html @@ -26,6 +26,13 @@