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.

213 lines
3.3 KiB

9 years ago
9 years ago
8 years ago
8 years ago
  1. html {
  2. position: relative;
  3. min-height: 100%;
  4. }
  5. body {
  6. /* Margin bottom by footer height */
  7. margin-bottom: 84px;
  8. }
  9. .footer {
  10. position: absolute;
  11. bottom: 0;
  12. width: 100%;
  13. /* Set the fixed height of the footer here */
  14. height: 84px;
  15. color: #AAA;
  16. border-top: 1px solid #eee;
  17. }
  18. .footer ul {
  19. list-style: none;
  20. margin: 32px 0;
  21. padding: 0;
  22. font-size: small;
  23. }
  24. .footer li {
  25. display: inline-block;
  26. margin: 0 10px 0 0;
  27. }
  28. #logo {
  29. max-height: 50px;
  30. margin-top: -16px;
  31. }
  32. #nav-main-sections > li > a {
  33. text-transform: uppercase;
  34. font-size: small;
  35. }
  36. #global-links > li > a {
  37. font-size: small;
  38. }
  39. @media (min-width: 768px) {
  40. .navbar-default .navbar-nav > li.active > a, .navbar-default .navbar-nav > li > a:hover {
  41. border-bottom: 5px solid #eee;
  42. padding-bottom: 25px;
  43. }
  44. }
  45. .navbar-default .navbar-brand, .navbar-default .navbar-brand:hover {
  46. color: #333;
  47. font-weight: bold;
  48. }
  49. #nav-sign-up {
  50. padding: 21px 0 21px 15px;
  51. }
  52. #nav-sign-up:hover {
  53. border: 0;
  54. }
  55. #nav-sign-up:focus, #nav-sign-up:active {
  56. outline: none;
  57. }
  58. #nav-sign-up span {
  59. display: inline-block;
  60. color: #1ea65a;
  61. font-weight: bold;
  62. border: 1px solid #1ea65a;
  63. border-radius: 5px;
  64. padding: 8px 16px;
  65. transition: all 0.2s ease;
  66. }
  67. #nav-sign-up:hover span {
  68. color: #fff;
  69. background: #22bc66;
  70. border-color: #22bc66;
  71. }
  72. #broken-channels > a {
  73. color: #a94442;
  74. }
  75. .page-checks .container-fluid, .page-details .container-fluid {
  76. /* Fluid below 1320px, but max width capped to 1320px ... */
  77. max-width: 1320px;
  78. }
  79. .status {
  80. font-size: 24px;
  81. display: inline-block;
  82. width: 24px;
  83. }
  84. .status.icon-up, .status.icon-started { color: #5cb85c; }
  85. .status.icon-new, .status.icon-paused { color: #CCC; }
  86. .status.icon-grace { color: #f0ad4e; }
  87. .status.icon-down { color: #d9534f; }
  88. .label.label-start {
  89. background-color: #FFF;
  90. color: #117a3f;;
  91. border: 1px solid #117a3f;
  92. }
  93. .label.label-ign {
  94. background: #e0e0e0;
  95. color: #333;
  96. }
  97. .hc-dialog {
  98. background: #FFF;
  99. padding: 2em;
  100. margin-top: 100px;
  101. }
  102. .hc-dialog h1 {
  103. margin: 0;
  104. }
  105. .dialog-body {
  106. margin: 24px 0;
  107. }
  108. pre {
  109. border: 0;
  110. }
  111. .nav-pills > li > a {
  112. color: #888;
  113. }
  114. .jumbotron p {
  115. font-weight: 300;
  116. }
  117. #debug-warning {
  118. background: #eeeeee;
  119. text-align: center;
  120. font-size: small;
  121. padding: 2px 0;
  122. }
  123. .badge-down {
  124. background-color: #d9534f;
  125. }
  126. .dropdown-menu > li.project-item a {
  127. min-width: 200px;
  128. padding: 6px 20px 3px 20px;
  129. }
  130. .project-item .name {
  131. display: inline-block;
  132. max-width: 130px;
  133. white-space: nowrap;
  134. overflow: hidden;
  135. text-overflow: ellipsis;
  136. }
  137. .spinner {
  138. display: none;
  139. width: 24px;
  140. height: 8px;
  141. margin: 4px auto 0 auto;
  142. }
  143. .spinner.started {
  144. display: block;
  145. }
  146. .spinner > div {
  147. float: left;
  148. width: 4px;
  149. height: 4px;
  150. margin: 0 2px;
  151. background: #AAA;
  152. border-radius: 2px;
  153. animation-duration: 1s;
  154. animation-name: spinner-pulse;
  155. animation-iteration-count: infinite;
  156. }
  157. .spinner .d2 {
  158. animation-delay: 0.15s;
  159. }
  160. .spinner .d3 {
  161. animation-delay: 0.3s;
  162. }
  163. @keyframes spinner-pulse {
  164. from {
  165. opacity: 0;
  166. }
  167. 50% {
  168. opacity: 1;
  169. }
  170. to {
  171. opacity: 0;
  172. }
  173. }