New Angular UI from 1806
[vid.git] / vid-webpack-master / src / app / healthStatus / health-status.component.scss
1 div.dataTables_wrapper {
2   width: 800px;
3   margin: 0 auto;
4 }
5
6 .row {
7   margin-left: 15px;
8   margin-right: 15px;
9 }
10
11 .health-status-header {
12   margin-top: 30px;
13   .title {
14     font-family: OpenSans-Semibold;
15     font-size: 24px;
16     color: #4A4A4A;
17     float: left;
18   }
19
20   .info {
21     width: 18px;
22     height: 18px;
23     border: 0;
24     background-size: auto 100%;
25     cursor: pointer;
26     float: left;
27     margin: 10px;
28   }
29
30   .refresh-btn {
31     float: left;
32     margin-top: 6px;
33     margin-left: 10px;
34     cursor: pointer;
35   }
36
37   .lastUpdate {
38     margin-top: 5px;
39     padding-top: 0px;
40     font-size: 15px;
41     border-left: 1px solid black;
42     float: left;
43     padding-left: 10px;
44     color: gray;
45     height: 26px;
46     margin-left: 10px;
47   }
48
49   .refreshBtn {
50     width: 18px;
51     height: 18px;
52     border: 0;
53     background-size: auto 100%;
54     outline: none;
55     margin-left: 10px;
56     background: transparent;
57   }
58
59   svg-icon use {
60     fill: #0000ff !important;
61   }
62
63   //.sub-title {
64   //  font-family: OpenSans-Semibold;
65   //  font-size: 14px;
66   //  color: #4A4A4A;
67   //  margin-left: 0;
68   //}
69 }
70
71 .loader {
72   border: 5px solid #f3f3f3;
73   border-radius: 50%;
74   border-top: 5px solid #3498db;
75   width: 170px;
76   height: 170px;
77   -webkit-animation: spin 2s linear infinite;
78   animation: spin 2s linear infinite;
79   position: absolute;
80   left: 50%;
81   right: 50%;
82   top: 50%;
83 }
84
85 /* Safari */
86 @-webkit-keyframes spin {
87   0% { -webkit-transform: rotate(0deg); }
88   100% { -webkit-transform: rotate(360deg); }
89 }
90
91 @keyframes spin {
92   0% { transform: rotate(0deg); }
93   100% { transform: rotate(360deg); }
94 }
95
96
97 .spin {
98   -webkit-animation: spin .4s infinite linear;
99   -moz-animation: spin .4s infinite linear;
100   -o-animation: spin .4s infinite linear;
101   animation: spin .4s infinite linear;
102   -webkit-transform-origin: 50% 44%;
103   transform-origin:50% 44%;
104   -ms-transform-origin:50% 44% /* IE 9 */
105 }
106
107 @-moz-keyframes spin {
108   from {
109     -moz-transform: rotate(0deg);
110   }
111   to {
112     -moz-transform: rotate(360deg);
113   }
114 }
115
116 @-webkit-keyframes spin {
117   from {
118     -webkit-transform: rotate(0deg);
119   }
120   to {
121     -webkit-transform: rotate(360deg);
122   }
123 }
124
125 @keyframes spin {
126   from {
127     transform: rotate(0deg);
128   }
129   to {
130     transform: rotate(360deg);
131   }
132 }
133
134 .icon-refresh:before {
135   font-family: icomoon;
136   content: '\e936';
137 }
138
139 .row{
140   max-width: 1500px;
141 }
142
143 .red {
144   color: red;
145 }
146
147 .border-not-ok {
148   border : 2px solid red;
149 }
150
151 .border-is-ok {
152   border : 2px solid #2fcc66;
153 }
154
155
156 .component-name {
157   min-width: 100px;
158   vertical-align: middle;
159   text-align: center;
160   background: #f5f5f5;
161   border-right: unset;
162 }
163
164 .component-metadata-cell {
165   border-left: unset;
166 }
167
168 .component-metadata {
169   white-space: pre-wrap;
170   background-color: unset;
171   border: unset;
172   font-family: OpenSans-Semibold;
173   font-size: 12px;
174 }
175
176
177 .table-bordered {
178   margin-top: 10px;
179   font-family: OpenSans-Semibold;
180   font-size: 12px;
181   overflow-x: auto;
182   display: block;
183   color: #5A5A5A;
184   border: none;
185   border-spacing: 0px 3px;
186   border-collapse: separate;
187 }