Web based Jalousie control.

bootstrap-theme.css 21KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443
  1. /*!
  2. * Bootstrap v3.2.0 (http://getbootstrap.com)
  3. * Copyright 2011-2014 Twitter, Inc.
  4. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
  5. */
  6. .btn-default,
  7. .btn-primary,
  8. .btn-success,
  9. .btn-info,
  10. .btn-warning,
  11. .btn-danger {
  12. text-shadow: 0 -1px 0 rgba(0, 0, 0, .2);
  13. -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075);
  14. box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075);
  15. }
  16. .btn-default:active,
  17. .btn-primary:active,
  18. .btn-success:active,
  19. .btn-info:active,
  20. .btn-warning:active,
  21. .btn-danger:active,
  22. .btn-default.active,
  23. .btn-primary.active,
  24. .btn-success.active,
  25. .btn-info.active,
  26. .btn-warning.active,
  27. .btn-danger.active {
  28. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
  29. box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
  30. }
  31. .btn:active,
  32. .btn.active {
  33. background-image: none;
  34. }
  35. .btn-default {
  36. text-shadow: 0 1px 0 #fff;
  37. background-image: -webkit-linear-gradient(top, #fff 0%, #e0e0e0 100%);
  38. background-image: -o-linear-gradient(top, #fff 0%, #e0e0e0 100%);
  39. background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#e0e0e0));
  40. background-image: linear-gradient(to bottom, #fff 0%, #e0e0e0 100%);
  41. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);
  42. filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  43. background-repeat: repeat-x;
  44. border-color: #dbdbdb;
  45. border-color: #ccc;
  46. }
  47. .btn-default:hover,
  48. .btn-default:focus {
  49. background-color: #e0e0e0;
  50. background-position: 0 -15px;
  51. }
  52. .btn-default:active,
  53. .btn-default.active {
  54. background-color: #e0e0e0;
  55. border-color: #dbdbdb;
  56. }
  57. .btn-default:disabled,
  58. .btn-default[disabled] {
  59. background-color: #e0e0e0;
  60. background-image: none;
  61. }
  62. .btn-primary {
  63. background-image: -webkit-linear-gradient(top, #428bca 0%, #2d6ca2 100%);
  64. background-image: -o-linear-gradient(top, #428bca 0%, #2d6ca2 100%);
  65. background-image: -webkit-gradient(linear, left top, left bottom, from(#428bca), to(#2d6ca2));
  66. background-image: linear-gradient(to bottom, #428bca 0%, #2d6ca2 100%);
  67. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff2d6ca2', GradientType=0);
  68. filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  69. background-repeat: repeat-x;
  70. border-color: #2b669a;
  71. }
  72. .btn-primary:hover,
  73. .btn-primary:focus {
  74. background-color: #2d6ca2;
  75. background-position: 0 -15px;
  76. }
  77. .btn-primary:active,
  78. .btn-primary.active {
  79. background-color: #2d6ca2;
  80. border-color: #2b669a;
  81. }
  82. .btn-primary:disabled,
  83. .btn-primary[disabled] {
  84. background-color: #2d6ca2;
  85. background-image: none;
  86. }
  87. .btn-success {
  88. background-image: -webkit-linear-gradient(top, #5cb85c 0%, #419641 100%);
  89. background-image: -o-linear-gradient(top, #5cb85c 0%, #419641 100%);
  90. background-image: -webkit-gradient(linear, left top, left bottom, from(#5cb85c), to(#419641));
  91. background-image: linear-gradient(to bottom, #5cb85c 0%, #419641 100%);
  92. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);
  93. filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  94. background-repeat: repeat-x;
  95. border-color: #3e8f3e;
  96. }
  97. .btn-success:hover,
  98. .btn-success:focus {
  99. background-color: #419641;
  100. background-position: 0 -15px;
  101. }
  102. .btn-success:active,
  103. .btn-success.active {
  104. background-color: #419641;
  105. border-color: #3e8f3e;
  106. }
  107. .btn-success:disabled,
  108. .btn-success[disabled] {
  109. background-color: #419641;
  110. background-image: none;
  111. }
  112. .btn-info {
  113. background-image: -webkit-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);
  114. background-image: -o-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);
  115. background-image: -webkit-gradient(linear, left top, left bottom, from(#5bc0de), to(#2aabd2));
  116. background-image: linear-gradient(to bottom, #5bc0de 0%, #2aabd2 100%);
  117. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);
  118. filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  119. background-repeat: repeat-x;
  120. border-color: #28a4c9;
  121. }
  122. .btn-info:hover,
  123. .btn-info:focus {
  124. background-color: #2aabd2;
  125. background-position: 0 -15px;
  126. }
  127. .btn-info:active,
  128. .btn-info.active {
  129. background-color: #2aabd2;
  130. border-color: #28a4c9;
  131. }
  132. .btn-info:disabled,
  133. .btn-info[disabled] {
  134. background-color: #2aabd2;
  135. background-image: none;
  136. }
  137. .btn-warning {
  138. background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);
  139. background-image: -o-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);
  140. background-image: -webkit-gradient(linear, left top, left bottom, from(#f0ad4e), to(#eb9316));
  141. background-image: linear-gradient(to bottom, #f0ad4e 0%, #eb9316 100%);
  142. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);
  143. filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  144. background-repeat: repeat-x;
  145. border-color: #e38d13;
  146. }
  147. .btn-warning:hover,
  148. .btn-warning:focus {
  149. background-color: #eb9316;
  150. background-position: 0 -15px;
  151. }
  152. .btn-warning:active,
  153. .btn-warning.active {
  154. background-color: #eb9316;
  155. border-color: #e38d13;
  156. }
  157. .btn-warning:disabled,
  158. .btn-warning[disabled] {
  159. background-color: #eb9316;
  160. background-image: none;
  161. }
  162. .btn-danger {
  163. background-image: -webkit-linear-gradient(top, #d9534f 0%, #c12e2a 100%);
  164. background-image: -o-linear-gradient(top, #d9534f 0%, #c12e2a 100%);
  165. background-image: -webkit-gradient(linear, left top, left bottom, from(#d9534f), to(#c12e2a));
  166. background-image: linear-gradient(to bottom, #d9534f 0%, #c12e2a 100%);
  167. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0);
  168. filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  169. background-repeat: repeat-x;
  170. border-color: #b92c28;
  171. }
  172. .btn-danger:hover,
  173. .btn-danger:focus {
  174. background-color: #c12e2a;
  175. background-position: 0 -15px;
  176. }
  177. .btn-danger:active,
  178. .btn-danger.active {
  179. background-color: #c12e2a;
  180. border-color: #b92c28;
  181. }
  182. .btn-danger:disabled,
  183. .btn-danger[disabled] {
  184. background-color: #c12e2a;
  185. background-image: none;
  186. }
  187. .thumbnail,
  188. .img-thumbnail {
  189. -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .075);
  190. box-shadow: 0 1px 2px rgba(0, 0, 0, .075);
  191. }
  192. .dropdown-menu > li > a:hover,
  193. .dropdown-menu > li > a:focus {
  194. background-color: #e8e8e8;
  195. background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
  196. background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
  197. background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#e8e8e8));
  198. background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);
  199. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);
  200. background-repeat: repeat-x;
  201. }
  202. .dropdown-menu > .active > a,
  203. .dropdown-menu > .active > a:hover,
  204. .dropdown-menu > .active > a:focus {
  205. background-color: #357ebd;
  206. background-image: -webkit-linear-gradient(top, #428bca 0%, #357ebd 100%);
  207. background-image: -o-linear-gradient(top, #428bca 0%, #357ebd 100%);
  208. background-image: -webkit-gradient(linear, left top, left bottom, from(#428bca), to(#357ebd));
  209. background-image: linear-gradient(to bottom, #428bca 0%, #357ebd 100%);
  210. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff357ebd', GradientType=0);
  211. background-repeat: repeat-x;
  212. }
  213. .navbar-default {
  214. background-image: -webkit-linear-gradient(top, #fff 0%, #f8f8f8 100%);
  215. background-image: -o-linear-gradient(top, #fff 0%, #f8f8f8 100%);
  216. background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f8f8f8));
  217. background-image: linear-gradient(to bottom, #fff 0%, #f8f8f8 100%);
  218. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0);
  219. filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  220. background-repeat: repeat-x;
  221. border-radius: 4px;
  222. -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 5px rgba(0, 0, 0, .075);
  223. box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 5px rgba(0, 0, 0, .075);
  224. }
  225. .navbar-default .navbar-nav > .active > a {
  226. background-image: -webkit-linear-gradient(top, #ebebeb 0%, #f3f3f3 100%);
  227. background-image: -o-linear-gradient(top, #ebebeb 0%, #f3f3f3 100%);
  228. background-image: -webkit-gradient(linear, left top, left bottom, from(#ebebeb), to(#f3f3f3));
  229. background-image: linear-gradient(to bottom, #ebebeb 0%, #f3f3f3 100%);
  230. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff3f3f3', GradientType=0);
  231. background-repeat: repeat-x;
  232. -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, .075);
  233. box-shadow: inset 0 3px 9px rgba(0, 0, 0, .075);
  234. }
  235. .navbar-brand,
  236. .navbar-nav > li > a {
  237. text-shadow: 0 1px 0 rgba(255, 255, 255, .25);
  238. }
  239. .navbar-inverse {
  240. background-image: -webkit-linear-gradient(top, #3c3c3c 0%, #222 100%);
  241. background-image: -o-linear-gradient(top, #3c3c3c 0%, #222 100%);
  242. background-image: -webkit-gradient(linear, left top, left bottom, from(#3c3c3c), to(#222));
  243. background-image: linear-gradient(to bottom, #3c3c3c 0%, #222 100%);
  244. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);
  245. filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  246. background-repeat: repeat-x;
  247. }
  248. .navbar-inverse .navbar-nav > .active > a {
  249. background-image: -webkit-linear-gradient(top, #222 0%, #282828 100%);
  250. background-image: -o-linear-gradient(top, #222 0%, #282828 100%);
  251. background-image: -webkit-gradient(linear, left top, left bottom, from(#222), to(#282828));
  252. background-image: linear-gradient(to bottom, #222 0%, #282828 100%);
  253. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff282828', GradientType=0);
  254. background-repeat: repeat-x;
  255. -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, .25);
  256. box-shadow: inset 0 3px 9px rgba(0, 0, 0, .25);
  257. }
  258. .navbar-inverse .navbar-brand,
  259. .navbar-inverse .navbar-nav > li > a {
  260. text-shadow: 0 -1px 0 rgba(0, 0, 0, .25);
  261. }
  262. .navbar-static-top,
  263. .navbar-fixed-top,
  264. .navbar-fixed-bottom {
  265. border-radius: 0;
  266. }
  267. .alert {
  268. text-shadow: 0 1px 0 rgba(255, 255, 255, .2);
  269. -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 1px 2px rgba(0, 0, 0, .05);
  270. box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 1px 2px rgba(0, 0, 0, .05);
  271. }
  272. .alert-success {
  273. background-image: -webkit-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);
  274. background-image: -o-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);
  275. background-image: -webkit-gradient(linear, left top, left bottom, from(#dff0d8), to(#c8e5bc));
  276. background-image: linear-gradient(to bottom, #dff0d8 0%, #c8e5bc 100%);
  277. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);
  278. background-repeat: repeat-x;
  279. border-color: #b2dba1;
  280. }
  281. .alert-info {
  282. background-image: -webkit-linear-gradient(top, #d9edf7 0%, #b9def0 100%);
  283. background-image: -o-linear-gradient(top, #d9edf7 0%, #b9def0 100%);
  284. background-image: -webkit-gradient(linear, left top, left bottom, from(#d9edf7), to(#b9def0));
  285. background-image: linear-gradient(to bottom, #d9edf7 0%, #b9def0 100%);
  286. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);
  287. background-repeat: repeat-x;
  288. border-color: #9acfea;
  289. }
  290. .alert-warning {
  291. background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);
  292. background-image: -o-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);
  293. background-image: -webkit-gradient(linear, left top, left bottom, from(#fcf8e3), to(#f8efc0));
  294. background-image: linear-gradient(to bottom, #fcf8e3 0%, #f8efc0 100%);
  295. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);
  296. background-repeat: repeat-x;
  297. border-color: #f5e79e;
  298. }
  299. .alert-danger {
  300. background-image: -webkit-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);
  301. background-image: -o-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);
  302. background-image: -webkit-gradient(linear, left top, left bottom, from(#f2dede), to(#e7c3c3));
  303. background-image: linear-gradient(to bottom, #f2dede 0%, #e7c3c3 100%);
  304. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);
  305. background-repeat: repeat-x;
  306. border-color: #dca7a7;
  307. }
  308. .progress {
  309. background-image: -webkit-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);
  310. background-image: -o-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);
  311. background-image: -webkit-gradient(linear, left top, left bottom, from(#ebebeb), to(#f5f5f5));
  312. background-image: linear-gradient(to bottom, #ebebeb 0%, #f5f5f5 100%);
  313. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0);
  314. background-repeat: repeat-x;
  315. }
  316. .progress-bar {
  317. background-image: -webkit-linear-gradient(top, #428bca 0%, #3071a9 100%);
  318. background-image: -o-linear-gradient(top, #428bca 0%, #3071a9 100%);
  319. background-image: -webkit-gradient(linear, left top, left bottom, from(#428bca), to(#3071a9));
  320. background-image: linear-gradient(to bottom, #428bca 0%, #3071a9 100%);
  321. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff3071a9', GradientType=0);
  322. background-repeat: repeat-x;
  323. }
  324. .progress-bar-success {
  325. background-image: -webkit-linear-gradient(top, #5cb85c 0%, #449d44 100%);
  326. background-image: -o-linear-gradient(top, #5cb85c 0%, #449d44 100%);
  327. background-image: -webkit-gradient(linear, left top, left bottom, from(#5cb85c), to(#449d44));
  328. background-image: linear-gradient(to bottom, #5cb85c 0%, #449d44 100%);
  329. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);
  330. background-repeat: repeat-x;
  331. }
  332. .progress-bar-info {
  333. background-image: -webkit-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);
  334. background-image: -o-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);
  335. background-image: -webkit-gradient(linear, left top, left bottom, from(#5bc0de), to(#31b0d5));
  336. background-image: linear-gradient(to bottom, #5bc0de 0%, #31b0d5 100%);
  337. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);
  338. background-repeat: repeat-x;
  339. }
  340. .progress-bar-warning {
  341. background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);
  342. background-image: -o-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);
  343. background-image: -webkit-gradient(linear, left top, left bottom, from(#f0ad4e), to(#ec971f));
  344. background-image: linear-gradient(to bottom, #f0ad4e 0%, #ec971f 100%);
  345. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);
  346. background-repeat: repeat-x;
  347. }
  348. .progress-bar-danger {
  349. background-image: -webkit-linear-gradient(top, #d9534f 0%, #c9302c 100%);
  350. background-image: -o-linear-gradient(top, #d9534f 0%, #c9302c 100%);
  351. background-image: -webkit-gradient(linear, left top, left bottom, from(#d9534f), to(#c9302c));
  352. background-image: linear-gradient(to bottom, #d9534f 0%, #c9302c 100%);
  353. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);
  354. background-repeat: repeat-x;
  355. }
  356. .progress-bar-striped {
  357. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  358. background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  359. background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  360. }
  361. .list-group {
  362. border-radius: 4px;
  363. -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .075);
  364. box-shadow: 0 1px 2px rgba(0, 0, 0, .075);
  365. }
  366. .list-group-item.active,
  367. .list-group-item.active:hover,
  368. .list-group-item.active:focus {
  369. text-shadow: 0 -1px 0 #3071a9;
  370. background-image: -webkit-linear-gradient(top, #428bca 0%, #3278b3 100%);
  371. background-image: -o-linear-gradient(top, #428bca 0%, #3278b3 100%);
  372. background-image: -webkit-gradient(linear, left top, left bottom, from(#428bca), to(#3278b3));
  373. background-image: linear-gradient(to bottom, #428bca 0%, #3278b3 100%);
  374. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff3278b3', GradientType=0);
  375. background-repeat: repeat-x;
  376. border-color: #3278b3;
  377. }
  378. .panel {
  379. -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
  380. box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
  381. }
  382. .panel-default > .panel-heading {
  383. background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
  384. background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
  385. background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#e8e8e8));
  386. background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);
  387. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);
  388. background-repeat: repeat-x;
  389. }
  390. .panel-primary > .panel-heading {
  391. background-image: -webkit-linear-gradient(top, #428bca 0%, #357ebd 100%);
  392. background-image: -o-linear-gradient(top, #428bca 0%, #357ebd 100%);
  393. background-image: -webkit-gradient(linear, left top, left bottom, from(#428bca), to(#357ebd));
  394. background-image: linear-gradient(to bottom, #428bca 0%, #357ebd 100%);
  395. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff357ebd', GradientType=0);
  396. background-repeat: repeat-x;
  397. }
  398. .panel-success > .panel-heading {
  399. background-image: -webkit-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);
  400. background-image: -o-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);
  401. background-image: -webkit-gradient(linear, left top, left bottom, from(#dff0d8), to(#d0e9c6));
  402. background-image: linear-gradient(to bottom, #dff0d8 0%, #d0e9c6 100%);
  403. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0);
  404. background-repeat: repeat-x;
  405. }
  406. .panel-info > .panel-heading {
  407. background-image: -webkit-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);
  408. background-image: -o-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);
  409. background-image: -webkit-gradient(linear, left top, left bottom, from(#d9edf7), to(#c4e3f3));
  410. background-image: linear-gradient(to bottom, #d9edf7 0%, #c4e3f3 100%);
  411. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0);
  412. background-repeat: repeat-x;
  413. }
  414. .panel-warning > .panel-heading {
  415. background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);
  416. background-image: -o-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);
  417. background-image: -webkit-gradient(linear, left top, left bottom, from(#fcf8e3), to(#faf2cc));
  418. background-image: linear-gradient(to bottom, #fcf8e3 0%, #faf2cc 100%);
  419. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0);
  420. background-repeat: repeat-x;
  421. }
  422. .panel-danger > .panel-heading {
  423. background-image: -webkit-linear-gradient(top, #f2dede 0%, #ebcccc 100%);
  424. background-image: -o-linear-gradient(top, #f2dede 0%, #ebcccc 100%);
  425. background-image: -webkit-gradient(linear, left top, left bottom, from(#f2dede), to(#ebcccc));
  426. background-image: linear-gradient(to bottom, #f2dede 0%, #ebcccc 100%);
  427. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0);
  428. background-repeat: repeat-x;
  429. }
  430. .well {
  431. background-image: -webkit-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);
  432. background-image: -o-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);
  433. background-image: -webkit-gradient(linear, left top, left bottom, from(#e8e8e8), to(#f5f5f5));
  434. background-image: linear-gradient(to bottom, #e8e8e8 0%, #f5f5f5 100%);
  435. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0);
  436. background-repeat: repeat-x;
  437. border-color: #dcdcdc;
  438. -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, .05), 0 1px 0 rgba(255, 255, 255, .1);
  439. box-shadow: inset 0 1px 3px rgba(0, 0, 0, .05), 0 1px 0 rgba(255, 255, 255, .1);
  440. }
  441. /*# sourceMappingURL=bootstrap-theme.css.map */