Guest User

Untitled

a guest
Jan 16th, 2018
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.97 KB | None | 0 0
  1. .btn {
  2. display: inline-block;
  3. padding: 6px 12px;
  4. margin-bottom: 0;
  5. font-size: 14px;
  6. font-weight: normal;
  7. line-height: 1.42857143;
  8. text-align: center;
  9. white-space: nowrap;
  10. vertical-align: middle;
  11. cursor: pointer;
  12. -webkit-user-select: none;
  13. -moz-user-select: none;
  14. -ms-user-select: none;
  15. user-select: none;
  16. background-image: none;
  17. border: 1px solid transparent;
  18. border-radius: 4px;
  19. }
  20. .btn:focus,
  21. .btn:active:focus,
  22. .btn.active:focus {
  23. outline: thin dotted;
  24. outline: 5px auto -webkit-focus-ring-color;
  25. outline-offset: -2px;
  26. }
  27. .btn:hover,
  28. .btn:focus {
  29. color: #333;
  30. text-decoration: none;
  31. }
  32. .btn:active,
  33. .btn.active {
  34. background-image: none;
  35. outline: 0;
  36. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
  37. box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
  38. }
  39. .btn.disabled,
  40. .btn[disabled],
  41. fieldset[disabled] .btn {
  42. pointer-events: none;
  43. cursor: not-allowed;
  44. filter: alpha(opacity=65);
  45. -webkit-box-shadow: none;
  46. box-shadow: none;
  47. opacity: .65;
  48. }
  49. .btn-default {
  50. color: #333;
  51. background-color: #fff;
  52. border-color: #ccc;
  53. }
  54. .btn-default:hover,
  55. .btn-default:focus,
  56. .btn-default:active,
  57. .btn-default.active,
  58. .open .dropdown-toggle.btn-default {
  59. color: #333;
  60. background-color: #ebebeb;
  61. border-color: #adadad;
  62. }
  63. .btn-default:active,
  64. .btn-default.active,
  65. .open .dropdown-toggle.btn-default {
  66. background-image: none;
  67. }
  68. .btn-default.disabled,
  69. .btn-default[disabled],
  70. fieldset[disabled] .btn-default,
  71. .btn-default.disabled:hover,
  72. .btn-default[disabled]:hover,
  73. fieldset[disabled] .btn-default:hover,
  74. .btn-default.disabled:focus,
  75. .btn-default[disabled]:focus,
  76. fieldset[disabled] .btn-default:focus,
  77. .btn-default.disabled:active,
  78. .btn-default[disabled]:active,
  79. fieldset[disabled] .btn-default:active,
  80. .btn-default.disabled.active,
  81. .btn-default[disabled].active,
  82. fieldset[disabled] .btn-default.active {
  83. background-color: #fff;
  84. border-color: #ccc;
  85. }
  86. .btn-default .badge {
  87. color: #fff;
  88. background-color: #333;
  89. }
  90. .btn-primary {
  91. color: #fff;
  92. background-color: #428bca;
  93. border-color: #357ebd;
  94. }
  95. .btn-primary:hover,
  96. .btn-primary:focus,
  97. .btn-primary:active,
  98. .btn-primary.active,
  99. .open .dropdown-toggle.btn-primary {
  100. color: #fff;
  101. background-color: #3276b1;
  102. border-color: #285e8e;
  103. }
  104. .btn-primary:active,
  105. .btn-primary.active,
  106. .open .dropdown-toggle.btn-primary {
  107. background-image: none;
  108. }
  109. .btn-primary.disabled,
  110. .btn-primary[disabled],
  111. fieldset[disabled] .btn-primary,
  112. .btn-primary.disabled:hover,
  113. .btn-primary[disabled]:hover,
  114. fieldset[disabled] .btn-primary:hover,
  115. .btn-primary.disabled:focus,
  116. .btn-primary[disabled]:focus,
  117. fieldset[disabled] .btn-primary:focus,
  118. .btn-primary.disabled:active,
  119. .btn-primary[disabled]:active,
  120. fieldset[disabled] .btn-primary:active,
  121. .btn-primary.disabled.active,
  122. .btn-primary[disabled].active,
  123. fieldset[disabled] .btn-primary.active {
  124. background-color: #428bca;
  125. border-color: #357ebd;
  126. }
  127. .btn-primary .badge {
  128. color: #428bca;
  129. background-color: #fff;
  130. }
  131. .btn-success {
  132. color: #fff;
  133. background-color: #5cb85c;
  134. border-color: #4cae4c;
  135. }
  136. .btn-success:hover,
  137. .btn-success:focus,
  138. .btn-success:active,
  139. .btn-success.active,
  140. .open .dropdown-toggle.btn-success {
  141. color: #fff;
  142. background-color: #47a447;
  143. border-color: #398439;
  144. }
  145. .btn-success:active,
  146. .btn-success.active,
  147. .open .dropdown-toggle.btn-success {
  148. background-image: none;
  149. }
  150. .btn-success.disabled,
  151. .btn-success[disabled],
  152. fieldset[disabled] .btn-success,
  153. .btn-success.disabled:hover,
  154. .btn-success[disabled]:hover,
  155. fieldset[disabled] .btn-success:hover,
  156. .btn-success.disabled:focus,
  157. .btn-success[disabled]:focus,
  158. fieldset[disabled] .btn-success:focus,
  159. .btn-success.disabled:active,
  160. .btn-success[disabled]:active,
  161. fieldset[disabled] .btn-success:active,
  162. .btn-success.disabled.active,
  163. .btn-success[disabled].active,
  164. fieldset[disabled] .btn-success.active {
  165. background-color: #5cb85c;
  166. border-color: #4cae4c;
  167. }
  168. .btn-success .badge {
  169. color: #5cb85c;
  170. background-color: #fff;
  171. }
  172. .btn-info {
  173. color: #fff;
  174. background-color: #5bc0de;
  175. border-color: #46b8da;
  176. }
  177. .btn-info:hover,
  178. .btn-info:focus,
  179. .btn-info:active,
  180. .btn-info.active,
  181. .open .dropdown-toggle.btn-info {
  182. color: #fff;
  183. background-color: #39b3d7;
  184. border-color: #269abc;
  185. }
  186. .btn-info:active,
  187. .btn-info.active,
  188. .open .dropdown-toggle.btn-info {
  189. background-image: none;
  190. }
  191. .btn-info.disabled,
  192. .btn-info[disabled],
  193. fieldset[disabled] .btn-info,
  194. .btn-info.disabled:hover,
  195. .btn-info[disabled]:hover,
  196. fieldset[disabled] .btn-info:hover,
  197. .btn-info.disabled:focus,
  198. .btn-info[disabled]:focus,
  199. fieldset[disabled] .btn-info:focus,
  200. .btn-info.disabled:active,
  201. .btn-info[disabled]:active,
  202. fieldset[disabled] .btn-info:active,
  203. .btn-info.disabled.active,
  204. .btn-info[disabled].active,
  205. fieldset[disabled] .btn-info.active {
  206. background-color: #5bc0de;
  207. border-color: #46b8da;
  208. }
  209. .btn-info .badge {
  210. color: #5bc0de;
  211. background-color: #fff;
  212. }
  213. .btn-warning {
  214. color: #fff;
  215. background-color: #f0ad4e;
  216. border-color: #eea236;
  217. }
  218. .btn-warning:hover,
  219. .btn-warning:focus,
  220. .btn-warning:active,
  221. .btn-warning.active,
  222. .open .dropdown-toggle.btn-warning {
  223. color: #fff;
  224. background-color: #ed9c28;
  225. border-color: #d58512;
  226. }
  227. .btn-warning:active,
  228. .btn-warning.active,
  229. .open .dropdown-toggle.btn-warning {
  230. background-image: none;
  231. }
  232. .btn-warning.disabled,
  233. .btn-warning[disabled],
  234. fieldset[disabled] .btn-warning,
  235. .btn-warning.disabled:hover,
  236. .btn-warning[disabled]:hover,
  237. fieldset[disabled] .btn-warning:hover,
  238. .btn-warning.disabled:focus,
  239. .btn-warning[disabled]:focus,
  240. fieldset[disabled] .btn-warning:focus,
  241. .btn-warning.disabled:active,
  242. .btn-warning[disabled]:active,
  243. fieldset[disabled] .btn-warning:active,
  244. .btn-warning.disabled.active,
  245. .btn-warning[disabled].active,
  246. fieldset[disabled] .btn-warning.active {
  247. background-color: #f0ad4e;
  248. border-color: #eea236;
  249. }
  250. .btn-warning .badge {
  251. color: #f0ad4e;
  252. background-color: #fff;
  253. }
  254. .btn-danger {
  255. color: #fff;
  256. background-color: #d9534f;
  257. border-color: #d43f3a;
  258. }
  259. .btn-danger:hover,
  260. .btn-danger:focus,
  261. .btn-danger:active,
  262. .btn-danger.active,
  263. .open .dropdown-toggle.btn-danger {
  264. color: #fff;
  265. background-color: #d2322d;
  266. border-color: #ac2925;
  267. }
  268. .btn-danger:active,
  269. .btn-danger.active,
  270. .open .dropdown-toggle.btn-danger {
  271. background-image: none;
  272. }
  273. .btn-danger.disabled,
  274. .btn-danger[disabled],
  275. fieldset[disabled] .btn-danger,
  276. .btn-danger.disabled:hover,
  277. .btn-danger[disabled]:hover,
  278. fieldset[disabled] .btn-danger:hover,
  279. .btn-danger.disabled:focus,
  280. .btn-danger[disabled]:focus,
  281. fieldset[disabled] .btn-danger:focus,
  282. .btn-danger.disabled:active,
  283. .btn-danger[disabled]:active,
  284. fieldset[disabled] .btn-danger:active,
  285. .btn-danger.disabled.active,
  286. .btn-danger[disabled].active,
  287. fieldset[disabled] .btn-danger.active {
  288. background-color: #d9534f;
  289. border-color: #d43f3a;
  290. }
  291. .btn-danger .badge {
  292. color: #d9534f;
  293. background-color: #fff;
  294. }
  295. .btn-link {
  296. font-weight: normal;
  297. color: #428bca;
  298. cursor: pointer;
  299. border-radius: 0;
  300. }
  301. .btn-link,
  302. .btn-link:active,
  303. .btn-link[disabled],
  304. fieldset[disabled] .btn-link {
  305. background-color: transparent;
  306. -webkit-box-shadow: none;
  307. box-shadow: none;
  308. }
  309. .btn-link,
  310. .btn-link:hover,
  311. .btn-link:focus,
  312. .btn-link:active {
  313. border-color: transparent;
  314. }
  315. .btn-link:hover,
  316. .btn-link:focus {
  317. color: #2a6496;
  318. text-decoration: underline;
  319. background-color: transparent;
  320. }
  321. .btn-link[disabled]:hover,
  322. fieldset[disabled] .btn-link:hover,
  323. .btn-link[disabled]:focus,
  324. fieldset[disabled] .btn-link:focus {
  325. color: #999;
  326. text-decoration: none;
  327. }
  328. .btn-lg,
  329. .btn-group-lg > .btn {
  330. padding: 10px 16px;
  331. font-size: 18px;
  332. line-height: 1.33;
  333. border-radius: 6px;
  334. }
  335. .btn-sm,
  336. .btn-group-sm > .btn {
  337. padding: 5px 10px;
  338. font-size: 12px;
  339. line-height: 1.5;
  340. border-radius: 3px;
  341. }
  342. .btn-xs,
  343. .btn-group-xs > .btn {
  344. padding: 1px 5px;
  345. font-size: 12px;
  346. line-height: 1.5;
  347. border-radius: 3px;
  348. }
  349. .btn-block {
  350. display: block;
  351. width: 100%;
  352. padding-right: 0;
  353. padding-left: 0;
  354. }
  355. .btn-block + .btn-block {
  356. margin-top: 5px;
  357. }
  358. input[type="submit"].btn-block,
  359. input[type="reset"].btn-block,
  360. input[type="button"].btn-block {
  361. width: 100%;
  362. }
Add Comment
Please, Sign In to add comment