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.

217 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. .navbar-text {
  50. font-size: small;
  51. }
  52. #nav-sign-up {
  53. padding: 21px 0 21px 15px;
  54. }
  55. #nav-sign-up:hover {
  56. border: 0;
  57. }
  58. #nav-sign-up:focus, #nav-sign-up:active {
  59. outline: none;
  60. }
  61. #nav-sign-up span {
  62. display: inline-block;
  63. color: #1ea65a;
  64. font-weight: bold;
  65. border: 1px solid #1ea65a;
  66. border-radius: 5px;
  67. padding: 8px 16px;
  68. transition: all 0.2s ease;
  69. }
  70. #nav-sign-up:hover span {
  71. color: #fff;
  72. background: #22bc66;
  73. border-color: #22bc66;
  74. }
  75. #broken-channels > a {
  76. color: #a94442;
  77. }
  78. .page-checks .container-fluid, .page-details .container-fluid {
  79. /* Fluid below 1320px, but max width capped to 1320px ... */
  80. max-width: 1320px;
  81. }
  82. .status {
  83. font-size: 24px;
  84. display: inline-block;
  85. width: 24px;
  86. }
  87. .status.icon-up, .status.icon-started { color: #5cb85c; }
  88. .status.icon-new, .status.icon-paused { color: #CCC; }
  89. .status.icon-grace { color: #f0ad4e; }
  90. .status.icon-down { color: #d9534f; }
  91. .label.label-start {
  92. background-color: #FFF;
  93. color: #117a3f;;
  94. border: 1px solid #117a3f;
  95. }
  96. .label.label-ign {
  97. background: #e0e0e0;
  98. color: #333;
  99. }
  100. .hc-dialog {
  101. background: #FFF;
  102. padding: 2em;
  103. margin-top: 100px;
  104. }
  105. .hc-dialog h1 {
  106. margin: 0;
  107. }
  108. .dialog-body {
  109. margin: 24px 0;
  110. }
  111. pre {
  112. border: 0;
  113. }
  114. .nav-pills > li > a {
  115. color: #888;
  116. }
  117. .jumbotron p {
  118. font-weight: 300;
  119. }
  120. #debug-warning {
  121. background: #eeeeee;
  122. text-align: center;
  123. font-size: small;
  124. padding: 2px 0;
  125. }
  126. .badge-down {
  127. background-color: #d9534f;
  128. }
  129. .dropdown-menu > li.project-item a {
  130. min-width: 200px;
  131. padding: 6px 20px 3px 20px;
  132. }
  133. .project-item .name {
  134. display: inline-block;
  135. max-width: 130px;
  136. white-space: nowrap;
  137. overflow: hidden;
  138. text-overflow: ellipsis;
  139. }
  140. .spinner {
  141. display: none;
  142. width: 24px;
  143. height: 8px;
  144. margin: 4px auto 0 auto;
  145. }
  146. .spinner.started {
  147. display: block;
  148. }
  149. .spinner > div {
  150. float: left;
  151. width: 4px;
  152. height: 4px;
  153. margin: 0 2px;
  154. background: #AAA;
  155. border-radius: 2px;
  156. animation-duration: 1s;
  157. animation-name: spinner-pulse;
  158. animation-iteration-count: infinite;
  159. }
  160. .spinner .d2 {
  161. animation-delay: 0.15s;
  162. }
  163. .spinner .d3 {
  164. animation-delay: 0.3s;
  165. }
  166. @keyframes spinner-pulse {
  167. from {
  168. opacity: 0;
  169. }
  170. 50% {
  171. opacity: 1;
  172. }
  173. to {
  174. opacity: 0;
  175. }
  176. }