12345678910111213141516171819202122232425262728293031 |
- html,body{
- width:100%;
- height:100%;
- margin:0;
- padding:0;
- }
- .loading
- {
- width:50%;
- height:20px;
- background-color:white;
- border:4px solid #21b0fc;
- border-radius:20px;
- z-index:2;
- position: relative;
- }
- .bar
- {
- width:1%;
- height:80%;
- position:relative;
- left:2px;
- top:2px;
- text-align:right;
- background-color:#21b0fc;
- border-radius:10px;
- color:White;
-
- }
|