You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

92 lines
1.9 KiB

  1. /*******************************
  2. Global Throbber Styles
  3. *******************************/
  4. /* Standard Size */
  5. .ui.throbber {
  6. display: inline-block;
  7. width: 32px;
  8. height: 32px;
  9. background: url(../images/throbber-medium.gif) no-repeat;
  10. background-position: 48% 0px;
  11. }
  12. .ui.throbber.center {
  13. position: absolute;
  14. top: 50%;
  15. left: 50%;
  16. margin: -16px 0px 0px -16px;
  17. z-index: 1000;
  18. }
  19. /* Large Size */
  20. .ui.throbber.large {
  21. width: 64px;
  22. height: 64px;
  23. background-image: url(../images/throbber-large.gif);
  24. }
  25. .ui.throbber.large.center {
  26. margin: -32px 0px 0px -32px;
  27. }
  28. /* Small Size */
  29. .ui.throbber.small {
  30. width: 24px;
  31. height: 24px;
  32. background-image: url(../images/throbber-small.gif);
  33. }
  34. .ui.throbber.small.center {
  35. margin: -12px 0px 0px -12px;
  36. }
  37. /* Tiny Size */
  38. .ui.throbber.tiny {
  39. width: 16px;
  40. height: 16px;
  41. background-image: url(../images/throbber-tiny.gif);
  42. }
  43. .ui.throbber.tiny.center {
  44. margin: -8px 0px 0px -8px;
  45. }
  46. /* Text Styles */
  47. .ui.throbber.text {
  48. width: auto !important;
  49. height: auto !important;
  50. text-align: center;
  51. font-style: normal;
  52. color: #422256;
  53. margin-top: -28px;
  54. min-width: 32px;
  55. padding-top: 40px;
  56. font-size: 12px;
  57. font-weight: bold;
  58. }
  59. .ui.throbber.text.tiny {
  60. margin-top: -16px;
  61. min-width: 16px;
  62. padding-top: 20px;
  63. font-size: 9px;
  64. }
  65. .ui.throbber.text.small {
  66. margin-top: -23px;
  67. min-width: 24px;
  68. padding-top: 32px;
  69. font-size: 11px;
  70. }
  71. .ui.throbber.text.large {
  72. margin-top: -46px;
  73. min-width: 64px;
  74. padding-top: 80px;
  75. font-size: 14px;
  76. }
  77. /* Blue */
  78. .ui.throbber.text.blue {
  79. color: #ffffff;
  80. }
  81. .ui.throbber.tiny.blue {
  82. background-image: url(../images/throbber-blue-tiny.gif);
  83. }
  84. .ui.throbber.small.blue {
  85. background-image: url(../images/throbber-blue-small.gif);
  86. }
  87. .ui.throbber.blue {
  88. background-image: url(../images/throbber-blue-medium.gif);
  89. }
  90. .ui.throbber.large.blue {
  91. background-image: url(../images/throbber-blue-large.gif);
  92. }