app.css 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. /* Empty. Add your own CSS if you like */
  2. .profile {
  3. width: 150px;
  4. height: 150px;
  5. background-size: cover;
  6. display: block;
  7. margin-left: auto;
  8. margin-right: auto;
  9. margin-top: 10px;
  10. margin-bottom: 10px;
  11. border-radius: 50px;
  12. }
  13. .logo {
  14. position: absolute;
  15. top: 50%;
  16. left: 50%;
  17. margin-top: -80px;
  18. margin-left: -100px;
  19. }
  20. .logo-footer {
  21. font-size: 10pt;
  22. }
  23. .no-results {
  24. color: gray;
  25. font-size: 20px;
  26. padding: 100px;
  27. text-align: center;
  28. }
  29. .empty-data {
  30. position: absolute;
  31. top: 50%;
  32. left: 50%;
  33. margin-top: -87px;
  34. margin-left: -100px;
  35. }
  36. .bar-icon {
  37. font-size:22px !important;
  38. margin-right: 10px;
  39. margin-left: 10px;
  40. }
  41. .holded {
  42. background-color: lightgray;
  43. /*box-shadow:
  44. 1px 1px #387ef5,
  45. 2px 2px #387ef5,
  46. 3px 3px #387ef5;
  47. -webkit-transform: translateX(-3px);
  48. transform: translateX(-3px);*/
  49. }
  50. .centered-spinner {
  51. position: absolute;
  52. top: 50%;
  53. left: 50%;
  54. margin-top: -16px;
  55. margin-left: -16px;
  56. }
  57. .spinner svg {
  58. width: 32px;
  59. height: 32px;
  60. stroke: #387ef5;
  61. fill: #387ef5;
  62. }
  63. .animate-repeat {
  64. line-height:30px;
  65. list-style:none;
  66. box-sizing:border-box;
  67. }
  68. .animate-repeat.ng-move,
  69. .animate-repeat.ng-enter,
  70. .animate-repeat.ng-leave {
  71. transition:all linear 0.1s;
  72. }
  73. .animate-repeat.ng-leave.ng-leave-active,
  74. .animate-repeat.ng-move,
  75. .animate-repeat.ng-enter {
  76. opacity:0;
  77. max-height:0;
  78. }
  79. .animate-repeat.ng-leave,
  80. .animate-repeat.ng-move.ng-move-active,
  81. .animate-repeat.ng-enter.ng-enter-active {
  82. opacity:1;
  83. max-height:30px;
  84. }