From 65d7000347feed2d130c5d81f23c69a6e6afbf3b Mon Sep 17 00:00:00 2001 From: ninabreznik Date: Mon, 24 Apr 2017 03:21:15 +0700 Subject: [PATCH] Change default tab to contract --- assets/css/browser-solidity.css | 14 ++++++++++++++ index.html | 4 ++-- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/assets/css/browser-solidity.css b/assets/css/browser-solidity.css index 7086c4f0fe..76e19d7da1 100644 --- a/assets/css/browser-solidity.css +++ b/assets/css/browser-solidity.css @@ -42,6 +42,20 @@ body { left: 0; } +.loader { + border: 16px solid #f3f3f3; /* Light grey */ + border-top: 16px solid #3498db; /* Blue */ + border-radius: 50%; + width: 120px; + height: 120px; + animation: spin 2s linear infinite; +} + +@keyframes spin { + 0% { transform: rotate(0deg); } + 100% { transform: rotate(360deg); } +} + #tabs-bar { position: absolute; overflow: hidden; diff --git a/index.html b/index.html index a31051de32..b3ecd7d4dd 100644 --- a/index.html +++ b/index.html @@ -57,11 +57,11 @@