e9b4c87ff2cf5a2bbf6aecc429851b5076534ab6
[portal/sdk.git] /
1
2 .lds-ring {
3   display: inline-block;
4   position: relative;
5   width: 64px;
6   height: 64px;
7 }
8 .lds-ring div {
9   box-sizing: border-box;
10   display: block;
11   position: absolute;
12   width: 80px;
13   height: 80px;
14   margin: 6px;
15   margin-top: -10px;
16   border: 10px solid #006496;
17   border-radius: 80%;
18   animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
19   border-color: #006496 transparent transparent transparent;
20 }
21 .lds-ring div:nth-child(1) {
22   animation-delay: -0.45s;
23 }
24 .lds-ring div:nth-child(2) {
25   animation-delay: -0.3s;
26 }
27 .lds-ring div:nth-child(3) {
28   animation-delay: -0.15s;
29 }
30 @keyframes lds-ring {
31   0% {
32     transform: rotate(0deg);
33   }
34   100% {
35     transform: rotate(360deg);
36   }
37 }
38
39
40 table {
41     width: 100%;
42   }
43   .example-container {
44     height: auto;
45     max-height: 800px;
46     overflow: auto;
47   }
48
49   
50
51 .app-data-table {
52     margin-top: 35px;
53     /* margin-left: 250px;
54     margin-right: 250px; */
55    
56   }
57
58   
59 th{
60     background-color: #2125299c;
61     color: rgb(255, 255, 255);
62     font-size: 15px;
63     border-radius: 2px;
64     height: 35px;
65   }
66   
67   tr:nth-child(even) {
68     background-color: #dddddd;
69     font-size: 2px;
70     height: 35px;
71     border-radius: 4px;
72     
73   }
74   
75   tr:nth-child(odd) {
76     font-size: 2px;
77     height: 35px;
78     border-radius: 4px;
79   }
80