index.html 868 B

1234567891011121314151617181920212223242526
  1. <!DOCTYPE html>
  2. <html lang="en" style="height: 100%">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <title>Go Ethereum Dashboard</title>
  8. <link rel="shortcut icon" type="image/ico" href="https://ethereum.org/favicon.ico" />
  9. <style>
  10. ::-webkit-scrollbar {
  11. width: 16px;
  12. }
  13. ::-webkit-scrollbar-thumb {
  14. background: #212121;
  15. }
  16. ::-webkit-scrollbar-corner {
  17. background: transparent;
  18. }
  19. </style>
  20. </head>
  21. <body style="height: 100%; margin: 0">
  22. <div id="dashboard" style="height: 100%"></div>
  23. <script type="text/javascript" src="bundle.js"></script>
  24. </body>
  25. </html>