123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- .profile {
- width: 150px;
- height: 150px;
- background-size: cover;
- display: block;
- margin-left: auto;
- margin-right: auto;
- margin-top: 10px;
- margin-bottom: 10px;
- border-radius: 50px;
- }
- .logo {
- position: absolute;
- top: 50%;
- left: 50%;
- margin-top: -80px;
- margin-left: -100px;
- }
- .logo-footer {
- font-size: 10pt;
- }
- .no-results {
- color: gray;
- font-size: 20px;
- padding: 100px;
- text-align: center;
- }
- .empty-data {
- position: absolute;
- top: 50%;
- left: 50%;
- margin-top: -87px;
- margin-left: -100px;
- }
- .bar-icon {
- font-size:22px !important;
- margin-right: 5px;
- margin-left: 5px;
- }
- .holded {
- background-color: lightgray;
-
- }
- .centered-spinner {
- position: absolute;
- top: 50%;
- left: 50%;
- margin-top: -16px;
- margin-left: -16px;
- }
- .spinner svg {
- width: 32px;
- height: 32px;
- stroke: #387ef5;
- fill: #387ef5;
- }
- .animate-repeat {
- line-height:30px;
- list-style:none;
- box-sizing:border-box;
- }
- .animate-repeat.ng-move,
- .animate-repeat.ng-enter,
- .animate-repeat.ng-leave {
- transition:all linear 0.1s;
- }
- .animate-repeat.ng-leave.ng-leave-active,
- .animate-repeat.ng-move,
- .animate-repeat.ng-enter {
- opacity:0;
- max-height:0;
- }
- .animate-repeat.ng-leave,
- .animate-repeat.ng-move.ng-move-active,
- .animate-repeat.ng-enter.ng-enter-active {
- opacity:1;
- max-height:30px;
- }
|