forked from akserg/ng2-slim-loading-bar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
35 lines (31 loc) · 854 Bytes
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/*!
* Copyright (C) 2016 Sergey Akopkokhyants
* This project is licensed under the terms of the MIT license.
* https://github.com/akserg/ng2-slim-loading-bar
*/
/* Styling for the Slim Loading Progress Bar container */
.slim-loading-bar {
position: fixed;
margin: 0;
padding: 0;
top: 0;
left: 0;
right: 0;
z-index: 99999;
}
/* Styling for the Slim Loading Progress Bar itself */
.slim-loading-bar-progress {
margin: 0;
padding: 0;
z-index: 99998;
background-color: green;
color: green;
box-shadow: 0 0 10px 0; /* Inherits the font color */
height: 2px;
opacity: 0;
/* Add CSS3 styles for transition smoothing */
-webkit-transition: all 0.5s ease-in-out;
-moz-transition: all 0.5s ease-in-out;
-o-transition: all 0.5s ease-in-out;
transition: all 0.5s ease-in-out;
}