base.scss 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. .red {
  2. color: #c30;
  3. }
  4. .red:hover {
  5. color: #f30;
  6. }
  7. .bold {
  8. font-weight: bold;
  9. }
  10. .graph-row td {
  11. text-align: center;
  12. }
  13. .image-preview {
  14. display: none;
  15. position: absolute;
  16. z-index: 100;
  17. height: 240px;
  18. width: 480px;
  19. }
  20. .white {
  21. color:#fff;
  22. }
  23. .bubblingG {
  24. text-align: center;
  25. width:125px;
  26. height:78px;
  27. }
  28. .bubblingG span {
  29. display: inline-block;
  30. vertical-align: middle;
  31. width: 16px;
  32. height: 16px;
  33. margin: 39px auto;
  34. background: #006FC4;
  35. -moz-border-radius: 79px;
  36. -moz-animation: bubblingG 0.9s infinite alternate;
  37. -webkit-border-radius: 79px;
  38. -webkit-animation: bubblingG 0.9s infinite alternate;
  39. -ms-border-radius: 79px;
  40. -ms-animation: bubblingG 0.9s infinite alternate;
  41. -o-border-radius: 79px;
  42. -o-animation: bubblingG 0.9s infinite alternate;
  43. border-radius: 79px;
  44. animation: bubblingG 0.9s infinite alternate;
  45. }
  46. #bubblingG_1 {
  47. -moz-animation-delay: 0s;
  48. -webkit-animation-delay: 0s;
  49. -ms-animation-delay: 0s;
  50. -o-animation-delay: 0s;
  51. animation-delay: 0s;
  52. }
  53. #bubblingG_2 {
  54. -moz-animation-delay: 0.27s;
  55. -webkit-animation-delay: 0.27s;
  56. -ms-animation-delay: 0.27s;
  57. -o-animation-delay: 0.27s;
  58. animation-delay: 0.27s;
  59. }
  60. #bubblingG_3 {
  61. -moz-animation-delay: 0.54s;
  62. -webkit-animation-delay: 0.54s;
  63. -ms-animation-delay: 0.54s;
  64. -o-animation-delay: 0.54s;
  65. animation-delay: 0.54s;
  66. }
  67. @-moz-keyframes bubblingG {
  68. 0% {
  69. width: 16px;
  70. height: 16px;
  71. background-color:#006FC4;
  72. -moz-transform: translateY(0);
  73. }
  74. 100% {
  75. width: 38px;
  76. height: 38px;
  77. background-color:#FFFFFF;
  78. -moz-transform: translateY(-33px);
  79. }
  80. }
  81. @-webkit-keyframes bubblingG {
  82. 0% {
  83. width: 16px;
  84. height: 16px;
  85. background-color:#006FC4;
  86. -webkit-transform: translateY(0);
  87. }
  88. 100% {
  89. width: 38px;
  90. height: 38px;
  91. background-color:#FFFFFF;
  92. -webkit-transform: translateY(-33px);
  93. }
  94. }
  95. @-ms-keyframes bubblingG {
  96. 0% {
  97. width: 16px;
  98. height: 16px;
  99. background-color:#006FC4;
  100. -ms-transform: translateY(0);
  101. }
  102. 100% {
  103. width: 38px;
  104. height: 38px;
  105. background-color:#FFFFFF;
  106. -ms-transform: translateY(-33px);
  107. }
  108. }
  109. @-o-keyframes bubblingG {
  110. 0% {
  111. width: 16px;
  112. height: 16px;
  113. background-color:#006FC4;
  114. -o-transform: translateY(0);
  115. }
  116. 100% {
  117. width: 38px;
  118. height: 38px;
  119. background-color:#FFFFFF;
  120. -o-transform: translateY(-33px);
  121. }
  122. }
  123. @keyframes bubblingG {
  124. 0% {
  125. width: 16px;
  126. height: 16px;
  127. background-color:#006FC4;
  128. transform: translateY(0);
  129. }
  130. 100% {
  131. width: 38px;
  132. height: 38px;
  133. background-color:#FFFFFF;
  134. transform: translateY(-33px);
  135. }
  136. }
  137. .bubblingG {
  138. position:absolute;
  139. left:0; right:0;
  140. top:0; bottom:0;
  141. margin:auto;
  142. max-width:100%;
  143. max-height:100%;
  144. overflow:auto;
  145. }
  146. .navbar-brand > img {
  147. width: 30px;
  148. height: 30px;
  149. margin-right: 5px;
  150. margin-top: -5px;
  151. display: inline;
  152. }