Private GIT

Skip to content
Snippets Groups Projects
Commit 81715770 authored by loiclau's avatar loiclau
Browse files

feat(css) add loading css

parent be8a93f9
No related branches found
No related tags found
No related merge requests found
.waiting {
position: relative;
height: 100%;
text-align: center;
}
.loading-container {
position: absolute;
width: 100%;
top: 40%
}
@keyframes green1 {
from {
fill: #83c249;}
to {fill: #ccf289;}
}
@keyframes green2 {
from {fill: #34b24f;}
to {fill: #93e888;}
}
@keyframes green3 {
from {fill: #00ac9f;}
to {fill: #4fd6ca;}
}
@keyframes blue1 {
from {fill: #00aeec;}
to {fill: #7bd0fa;}
}
@keyframes blue2 {
from {fill: #0078bb;}
to {fill: #60a6d7;}
}
@keyframes blue3 {
from {fill: #29378e;}
to {fill: #5375bd;}
}
.color {
animation-duration: .3s;
animation-direction: alternate;
//webkit-animation-direction: alternate;
animation-timing-function: linear;
animation-iteration-count: infinite;
}
.color-1 {
fill: #83c249;
animation-name: green1;
animation-delay: 0s;
}
.color-2 {
fill: #34b24f;
animation-name: green2;
animation-delay: .5s;
}
.color-3 {
fill: #00ac9f;
animation-name: green3;
animation-delay: 1s;
}
.color-4 {
fill: #00aeec;
animation-name: blue1;
animation-delay: 1.5s;
}
.color-5 {
fill: #0078bb;
animation-name: blue2;
animation-delay: 2s;
}
.color-6 {
fill: #29378e;
animation-name: blue3;
animation-delay: 2.5s;
}
\ No newline at end of file
...@@ -52,6 +52,7 @@ print "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n"; ...@@ -52,6 +52,7 @@ print "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n";
<link href="./include/common/javascript/jquery/plugins/jpaginator/jPaginator.css" rel="stylesheet" type="text/css"/> <link href="./include/common/javascript/jquery/plugins/jpaginator/jPaginator.css" rel="stylesheet" type="text/css"/>
<link href="./Themes/Centreon-2/style.css" rel="stylesheet" type="text/css"/> <link href="./Themes/Centreon-2/style.css" rel="stylesheet" type="text/css"/>
<link href="./Themes/Centreon-2/centreon-loading.css" rel="stylesheet" type="text/css"/>
<link href="./Themes/Centreon-2/responsive-style.css" rel="stylesheet" type="text/css"/> <link href="./Themes/Centreon-2/responsive-style.css" rel="stylesheet" type="text/css"/>
<link href="./Themes/Centreon-2/<?php echo $colorfile; ?>" rel="stylesheet" type="text/css" /> <link href="./Themes/Centreon-2/<?php echo $colorfile; ?>" rel="stylesheet" type="text/css" />
<link href="./include/common/javascript/modalbox.css" rel="stylesheet" type="text/css" media="screen"/> <link href="./include/common/javascript/modalbox.css" rel="stylesheet" type="text/css" media="screen"/>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment