UNPKG

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