AdminLTE-bootstrap-social.css 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260
  1. /*
  2. * Social Buttons for Bootstrap
  3. *
  4. * Copyright 2013-2015 Panayiotis Lipiridis
  5. * Licensed under the MIT License
  6. *
  7. * https://github.com/lipis/bootstrap-social
  8. */
  9. .btn-social {
  10. position: relative;
  11. padding-left: 44px;
  12. text-align: left;
  13. white-space: nowrap;
  14. overflow: hidden;
  15. text-overflow: ellipsis;
  16. }
  17. .btn-social > :first-child {
  18. position: absolute;
  19. left: 0;
  20. top: 0;
  21. bottom: 0;
  22. width: 32px;
  23. line-height: 34px;
  24. font-size: 1.6em;
  25. text-align: center;
  26. border-right: 1px solid rgba(0, 0, 0, 0.2);
  27. }
  28. .btn-social.btn-lg {
  29. padding-left: 61px;
  30. }
  31. .btn-social.btn-lg > :first-child {
  32. line-height: 45px;
  33. width: 45px;
  34. font-size: 1.8em;
  35. }
  36. .btn-social.btn-sm {
  37. padding-left: 38px;
  38. }
  39. .btn-social.btn-sm > :first-child {
  40. line-height: 28px;
  41. width: 28px;
  42. font-size: 1.4em;
  43. }
  44. .btn-social.btn-xs {
  45. padding-left: 30px;
  46. }
  47. .btn-social.btn-xs > :first-child {
  48. line-height: 20px;
  49. width: 20px;
  50. font-size: 1.2em;
  51. }
  52. .btn-social-icon {
  53. position: relative;
  54. padding-left: 44px;
  55. text-align: left;
  56. white-space: nowrap;
  57. overflow: hidden;
  58. text-overflow: ellipsis;
  59. height: 34px;
  60. width: 34px;
  61. padding: 0;
  62. }
  63. .btn-social-icon > :first-child {
  64. position: absolute;
  65. left: 0;
  66. top: 0;
  67. bottom: 0;
  68. width: 32px;
  69. line-height: 34px;
  70. font-size: 1.6em;
  71. text-align: center;
  72. border-right: 1px solid rgba(0, 0, 0, 0.2);
  73. }
  74. .btn-social-icon.btn-lg {
  75. padding-left: 61px;
  76. }
  77. .btn-social-icon.btn-lg > :first-child {
  78. line-height: 45px;
  79. width: 45px;
  80. font-size: 1.8em;
  81. }
  82. .btn-social-icon.btn-sm {
  83. padding-left: 38px;
  84. }
  85. .btn-social-icon.btn-sm > :first-child {
  86. line-height: 28px;
  87. width: 28px;
  88. font-size: 1.4em;
  89. }
  90. .btn-social-icon.btn-xs {
  91. padding-left: 30px;
  92. }
  93. .btn-social-icon.btn-xs > :first-child {
  94. line-height: 20px;
  95. width: 20px;
  96. font-size: 1.2em;
  97. }
  98. .btn-social-icon > :first-child {
  99. border: none;
  100. text-align: center;
  101. width: 100%;
  102. }
  103. .btn-social-icon.btn-lg {
  104. height: 45px;
  105. width: 45px;
  106. padding-left: 0;
  107. padding-right: 0;
  108. }
  109. .btn-social-icon.btn-sm {
  110. height: 30px;
  111. width: 30px;
  112. padding-left: 0;
  113. padding-right: 0;
  114. }
  115. .btn-social-icon.btn-xs {
  116. height: 22px;
  117. width: 22px;
  118. padding-left: 0;
  119. padding-right: 0;
  120. }
  121. .btn-adn {
  122. color: #fff;
  123. background-color: #d87a68;
  124. border-color: rgba(0, 0, 0, 0.2);
  125. }
  126. .btn-adn:focus,
  127. .btn-adn.focus {
  128. color: #fff;
  129. background-color: #ce563f;
  130. border-color: rgba(0, 0, 0, 0.2);
  131. }
  132. .btn-adn:hover {
  133. color: #fff;
  134. background-color: #ce563f;
  135. border-color: rgba(0, 0, 0, 0.2);
  136. }
  137. .btn-adn:active,
  138. .btn-adn.active,
  139. .open > .dropdown-toggle.btn-adn {
  140. color: #fff;
  141. background-color: #ce563f;
  142. border-color: rgba(0, 0, 0, 0.2);
  143. }
  144. .btn-adn:active:hover,
  145. .btn-adn.active:hover,
  146. .open > .dropdown-toggle.btn-adn:hover,
  147. .btn-adn:active:focus,
  148. .btn-adn.active:focus,
  149. .open > .dropdown-toggle.btn-adn:focus,
  150. .btn-adn:active.focus,
  151. .btn-adn.active.focus,
  152. .open > .dropdown-toggle.btn-adn.focus {
  153. color: #fff;
  154. background-color: #b94630;
  155. border-color: rgba(0, 0, 0, 0.2);
  156. }
  157. .btn-adn:active,
  158. .btn-adn.active,
  159. .open > .dropdown-toggle.btn-adn {
  160. background-image: none;
  161. }
  162. .btn-adn.disabled:hover,
  163. .btn-adn[disabled]:hover,
  164. fieldset[disabled] .btn-adn:hover,
  165. .btn-adn.disabled:focus,
  166. .btn-adn[disabled]:focus,
  167. fieldset[disabled] .btn-adn:focus,
  168. .btn-adn.disabled.focus,
  169. .btn-adn[disabled].focus,
  170. fieldset[disabled] .btn-adn.focus {
  171. background-color: #d87a68;
  172. border-color: rgba(0, 0, 0, 0.2);
  173. }
  174. .btn-adn .badge {
  175. color: #d87a68;
  176. background-color: #fff;
  177. }
  178. .btn-bitbucket {
  179. color: #fff;
  180. background-color: #205081;
  181. border-color: rgba(0, 0, 0, 0.2);
  182. }
  183. .btn-bitbucket:focus,
  184. .btn-bitbucket.focus {
  185. color: #fff;
  186. background-color: #163758;
  187. border-color: rgba(0, 0, 0, 0.2);
  188. }
  189. .btn-bitbucket:hover {
  190. color: #fff;
  191. background-color: #163758;
  192. border-color: rgba(0, 0, 0, 0.2);
  193. }
  194. .btn-bitbucket:active,
  195. .btn-bitbucket.active,
  196. .open > .dropdown-toggle.btn-bitbucket {
  197. color: #fff;
  198. background-color: #163758;
  199. border-color: rgba(0, 0, 0, 0.2);
  200. }
  201. .btn-bitbucket:active:hover,
  202. .btn-bitbucket.active:hover,
  203. .open > .dropdown-toggle.btn-bitbucket:hover,
  204. .btn-bitbucket:active:focus,
  205. .btn-bitbucket.active:focus,
  206. .open > .dropdown-toggle.btn-bitbucket:focus,
  207. .btn-bitbucket:active.focus,
  208. .btn-bitbucket.active.focus,
  209. .open > .dropdown-toggle.btn-bitbucket.focus {
  210. color: #fff;
  211. background-color: #0f253c;
  212. border-color: rgba(0, 0, 0, 0.2);
  213. }
  214. .btn-bitbucket:active,
  215. .btn-bitbucket.active,
  216. .open > .dropdown-toggle.btn-bitbucket {
  217. background-image: none;
  218. }
  219. .btn-bitbucket.disabled:hover,
  220. .btn-bitbucket[disabled]:hover,
  221. fieldset[disabled] .btn-bitbucket:hover,
  222. .btn-bitbucket.disabled:focus,
  223. .btn-bitbucket[disabled]:focus,
  224. fieldset[disabled] .btn-bitbucket:focus,
  225. .btn-bitbucket.disabled.focus,
  226. .btn-bitbucket[disabled].focus,
  227. fieldset[disabled] .btn-bitbucket.focus {
  228. background-color: #205081;
  229. border-color: rgba(0, 0, 0, 0.2);
  230. }
  231. .btn-bitbucket .badge {
  232. color: #205081;
  233. background-color: #fff;
  234. }
  235. .btn-dropbox {
  236. color: #fff;
  237. background-color: #1087dd;
  238. border-color: rgba(0, 0, 0, 0.2);
  239. }
  240. .btn-dropbox:focus,
  241. .btn-dropbox.focus {
  242. color: #fff;
  243. background-color: #0d6aad;
  244. border-color: rgba(0, 0, 0, 0.2);
  245. }
  246. .btn-dropbox:hover {
  247. color: #fff;
  248. background-color: #0d6aad;
  249. border-color: rgba(0, 0, 0, 0.2);
  250. }
  251. .btn-dropbox:active,
  252. .btn-dropbox.active,
  253. .open > .dropdown-toggle.btn-dropbox {
  254. color: #fff;
  255. background-color: #0d6aad;
  256. border-color: rgba(0, 0, 0, 0.2);
  257. }
  258. .btn-dropbox:active:hover,
  259. .btn-dropbox.active:hover,
  260. .open > .dropdown-toggle.btn-dropbox:hover,
  261. .btn-dropbox:active:focus,
  262. .btn-dropbox.active:focus,
  263. .open > .dropdown-toggle.btn-dropbox:focus,
  264. .btn-dropbox:active.focus,
  265. .btn-dropbox.active.focus,
  266. .open > .dropdown-toggle.btn-dropbox.focus {
  267. color: #fff;
  268. background-color: #0a568c;
  269. border-color: rgba(0, 0, 0, 0.2);
  270. }
  271. .btn-dropbox:active,
  272. .btn-dropbox.active,
  273. .open > .dropdown-toggle.btn-dropbox {
  274. background-image: none;
  275. }
  276. .btn-dropbox.disabled:hover,
  277. .btn-dropbox[disabled]:hover,
  278. fieldset[disabled] .btn-dropbox:hover,
  279. .btn-dropbox.disabled:focus,
  280. .btn-dropbox[disabled]:focus,
  281. fieldset[disabled] .btn-dropbox:focus,
  282. .btn-dropbox.disabled.focus,
  283. .btn-dropbox[disabled].focus,
  284. fieldset[disabled] .btn-dropbox.focus {
  285. background-color: #1087dd;
  286. border-color: rgba(0, 0, 0, 0.2);
  287. }
  288. .btn-dropbox .badge {
  289. color: #1087dd;
  290. background-color: #fff;
  291. }
  292. .btn-facebook {
  293. color: #fff;
  294. background-color: #3b5998;
  295. border-color: rgba(0, 0, 0, 0.2);
  296. }
  297. .btn-facebook:focus,
  298. .btn-facebook.focus {
  299. color: #fff;
  300. background-color: #2d4373;
  301. border-color: rgba(0, 0, 0, 0.2);
  302. }
  303. .btn-facebook:hover {
  304. color: #fff;
  305. background-color: #2d4373;
  306. border-color: rgba(0, 0, 0, 0.2);
  307. }
  308. .btn-facebook:active,
  309. .btn-facebook.active,
  310. .open > .dropdown-toggle.btn-facebook {
  311. color: #fff;
  312. background-color: #2d4373;
  313. border-color: rgba(0, 0, 0, 0.2);
  314. }
  315. .btn-facebook:active:hover,
  316. .btn-facebook.active:hover,
  317. .open > .dropdown-toggle.btn-facebook:hover,
  318. .btn-facebook:active:focus,
  319. .btn-facebook.active:focus,
  320. .open > .dropdown-toggle.btn-facebook:focus,
  321. .btn-facebook:active.focus,
  322. .btn-facebook.active.focus,
  323. .open > .dropdown-toggle.btn-facebook.focus {
  324. color: #fff;
  325. background-color: #23345a;
  326. border-color: rgba(0, 0, 0, 0.2);
  327. }
  328. .btn-facebook:active,
  329. .btn-facebook.active,
  330. .open > .dropdown-toggle.btn-facebook {
  331. background-image: none;
  332. }
  333. .btn-facebook.disabled:hover,
  334. .btn-facebook[disabled]:hover,
  335. fieldset[disabled] .btn-facebook:hover,
  336. .btn-facebook.disabled:focus,
  337. .btn-facebook[disabled]:focus,
  338. fieldset[disabled] .btn-facebook:focus,
  339. .btn-facebook.disabled.focus,
  340. .btn-facebook[disabled].focus,
  341. fieldset[disabled] .btn-facebook.focus {
  342. background-color: #3b5998;
  343. border-color: rgba(0, 0, 0, 0.2);
  344. }
  345. .btn-facebook .badge {
  346. color: #3b5998;
  347. background-color: #fff;
  348. }
  349. .btn-flickr {
  350. color: #fff;
  351. background-color: #ff0084;
  352. border-color: rgba(0, 0, 0, 0.2);
  353. }
  354. .btn-flickr:focus,
  355. .btn-flickr.focus {
  356. color: #fff;
  357. background-color: #cc006a;
  358. border-color: rgba(0, 0, 0, 0.2);
  359. }
  360. .btn-flickr:hover {
  361. color: #fff;
  362. background-color: #cc006a;
  363. border-color: rgba(0, 0, 0, 0.2);
  364. }
  365. .btn-flickr:active,
  366. .btn-flickr.active,
  367. .open > .dropdown-toggle.btn-flickr {
  368. color: #fff;
  369. background-color: #cc006a;
  370. border-color: rgba(0, 0, 0, 0.2);
  371. }
  372. .btn-flickr:active:hover,
  373. .btn-flickr.active:hover,
  374. .open > .dropdown-toggle.btn-flickr:hover,
  375. .btn-flickr:active:focus,
  376. .btn-flickr.active:focus,
  377. .open > .dropdown-toggle.btn-flickr:focus,
  378. .btn-flickr:active.focus,
  379. .btn-flickr.active.focus,
  380. .open > .dropdown-toggle.btn-flickr.focus {
  381. color: #fff;
  382. background-color: #a80057;
  383. border-color: rgba(0, 0, 0, 0.2);
  384. }
  385. .btn-flickr:active,
  386. .btn-flickr.active,
  387. .open > .dropdown-toggle.btn-flickr {
  388. background-image: none;
  389. }
  390. .btn-flickr.disabled:hover,
  391. .btn-flickr[disabled]:hover,
  392. fieldset[disabled] .btn-flickr:hover,
  393. .btn-flickr.disabled:focus,
  394. .btn-flickr[disabled]:focus,
  395. fieldset[disabled] .btn-flickr:focus,
  396. .btn-flickr.disabled.focus,
  397. .btn-flickr[disabled].focus,
  398. fieldset[disabled] .btn-flickr.focus {
  399. background-color: #ff0084;
  400. border-color: rgba(0, 0, 0, 0.2);
  401. }
  402. .btn-flickr .badge {
  403. color: #ff0084;
  404. background-color: #fff;
  405. }
  406. .btn-foursquare {
  407. color: #fff;
  408. background-color: #f94877;
  409. border-color: rgba(0, 0, 0, 0.2);
  410. }
  411. .btn-foursquare:focus,
  412. .btn-foursquare.focus {
  413. color: #fff;
  414. background-color: #f71752;
  415. border-color: rgba(0, 0, 0, 0.2);
  416. }
  417. .btn-foursquare:hover {
  418. color: #fff;
  419. background-color: #f71752;
  420. border-color: rgba(0, 0, 0, 0.2);
  421. }
  422. .btn-foursquare:active,
  423. .btn-foursquare.active,
  424. .open > .dropdown-toggle.btn-foursquare {
  425. color: #fff;
  426. background-color: #f71752;
  427. border-color: rgba(0, 0, 0, 0.2);
  428. }
  429. .btn-foursquare:active:hover,
  430. .btn-foursquare.active:hover,
  431. .open > .dropdown-toggle.btn-foursquare:hover,
  432. .btn-foursquare:active:focus,
  433. .btn-foursquare.active:focus,
  434. .open > .dropdown-toggle.btn-foursquare:focus,
  435. .btn-foursquare:active.focus,
  436. .btn-foursquare.active.focus,
  437. .open > .dropdown-toggle.btn-foursquare.focus {
  438. color: #fff;
  439. background-color: #e30742;
  440. border-color: rgba(0, 0, 0, 0.2);
  441. }
  442. .btn-foursquare:active,
  443. .btn-foursquare.active,
  444. .open > .dropdown-toggle.btn-foursquare {
  445. background-image: none;
  446. }
  447. .btn-foursquare.disabled:hover,
  448. .btn-foursquare[disabled]:hover,
  449. fieldset[disabled] .btn-foursquare:hover,
  450. .btn-foursquare.disabled:focus,
  451. .btn-foursquare[disabled]:focus,
  452. fieldset[disabled] .btn-foursquare:focus,
  453. .btn-foursquare.disabled.focus,
  454. .btn-foursquare[disabled].focus,
  455. fieldset[disabled] .btn-foursquare.focus {
  456. background-color: #f94877;
  457. border-color: rgba(0, 0, 0, 0.2);
  458. }
  459. .btn-foursquare .badge {
  460. color: #f94877;
  461. background-color: #fff;
  462. }
  463. .btn-github {
  464. color: #fff;
  465. background-color: #444444;
  466. border-color: rgba(0, 0, 0, 0.2);
  467. }
  468. .btn-github:focus,
  469. .btn-github.focus {
  470. color: #fff;
  471. background-color: #2b2b2b;
  472. border-color: rgba(0, 0, 0, 0.2);
  473. }
  474. .btn-github:hover {
  475. color: #fff;
  476. background-color: #2b2b2b;
  477. border-color: rgba(0, 0, 0, 0.2);
  478. }
  479. .btn-github:active,
  480. .btn-github.active,
  481. .open > .dropdown-toggle.btn-github {
  482. color: #fff;
  483. background-color: #2b2b2b;
  484. border-color: rgba(0, 0, 0, 0.2);
  485. }
  486. .btn-github:active:hover,
  487. .btn-github.active:hover,
  488. .open > .dropdown-toggle.btn-github:hover,
  489. .btn-github:active:focus,
  490. .btn-github.active:focus,
  491. .open > .dropdown-toggle.btn-github:focus,
  492. .btn-github:active.focus,
  493. .btn-github.active.focus,
  494. .open > .dropdown-toggle.btn-github.focus {
  495. color: #fff;
  496. background-color: #191919;
  497. border-color: rgba(0, 0, 0, 0.2);
  498. }
  499. .btn-github:active,
  500. .btn-github.active,
  501. .open > .dropdown-toggle.btn-github {
  502. background-image: none;
  503. }
  504. .btn-github.disabled:hover,
  505. .btn-github[disabled]:hover,
  506. fieldset[disabled] .btn-github:hover,
  507. .btn-github.disabled:focus,
  508. .btn-github[disabled]:focus,
  509. fieldset[disabled] .btn-github:focus,
  510. .btn-github.disabled.focus,
  511. .btn-github[disabled].focus,
  512. fieldset[disabled] .btn-github.focus {
  513. background-color: #444444;
  514. border-color: rgba(0, 0, 0, 0.2);
  515. }
  516. .btn-github .badge {
  517. color: #444444;
  518. background-color: #fff;
  519. }
  520. .btn-google {
  521. color: #fff;
  522. background-color: #dd4b39;
  523. border-color: rgba(0, 0, 0, 0.2);
  524. }
  525. .btn-google:focus,
  526. .btn-google.focus {
  527. color: #fff;
  528. background-color: #c23321;
  529. border-color: rgba(0, 0, 0, 0.2);
  530. }
  531. .btn-google:hover {
  532. color: #fff;
  533. background-color: #c23321;
  534. border-color: rgba(0, 0, 0, 0.2);
  535. }
  536. .btn-google:active,
  537. .btn-google.active,
  538. .open > .dropdown-toggle.btn-google {
  539. color: #fff;
  540. background-color: #c23321;
  541. border-color: rgba(0, 0, 0, 0.2);
  542. }
  543. .btn-google:active:hover,
  544. .btn-google.active:hover,
  545. .open > .dropdown-toggle.btn-google:hover,
  546. .btn-google:active:focus,
  547. .btn-google.active:focus,
  548. .open > .dropdown-toggle.btn-google:focus,
  549. .btn-google:active.focus,
  550. .btn-google.active.focus,
  551. .open > .dropdown-toggle.btn-google.focus {
  552. color: #fff;
  553. background-color: #a32b1c;
  554. border-color: rgba(0, 0, 0, 0.2);
  555. }
  556. .btn-google:active,
  557. .btn-google.active,
  558. .open > .dropdown-toggle.btn-google {
  559. background-image: none;
  560. }
  561. .btn-google.disabled:hover,
  562. .btn-google[disabled]:hover,
  563. fieldset[disabled] .btn-google:hover,
  564. .btn-google.disabled:focus,
  565. .btn-google[disabled]:focus,
  566. fieldset[disabled] .btn-google:focus,
  567. .btn-google.disabled.focus,
  568. .btn-google[disabled].focus,
  569. fieldset[disabled] .btn-google.focus {
  570. background-color: #dd4b39;
  571. border-color: rgba(0, 0, 0, 0.2);
  572. }
  573. .btn-google .badge {
  574. color: #dd4b39;
  575. background-color: #fff;
  576. }
  577. .btn-instagram {
  578. color: #fff;
  579. background-color: #3f729b;
  580. border-color: rgba(0, 0, 0, 0.2);
  581. }
  582. .btn-instagram:focus,
  583. .btn-instagram.focus {
  584. color: #fff;
  585. background-color: #305777;
  586. border-color: rgba(0, 0, 0, 0.2);
  587. }
  588. .btn-instagram:hover {
  589. color: #fff;
  590. background-color: #305777;
  591. border-color: rgba(0, 0, 0, 0.2);
  592. }
  593. .btn-instagram:active,
  594. .btn-instagram.active,
  595. .open > .dropdown-toggle.btn-instagram {
  596. color: #fff;
  597. background-color: #305777;
  598. border-color: rgba(0, 0, 0, 0.2);
  599. }
  600. .btn-instagram:active:hover,
  601. .btn-instagram.active:hover,
  602. .open > .dropdown-toggle.btn-instagram:hover,
  603. .btn-instagram:active:focus,
  604. .btn-instagram.active:focus,
  605. .open > .dropdown-toggle.btn-instagram:focus,
  606. .btn-instagram:active.focus,
  607. .btn-instagram.active.focus,
  608. .open > .dropdown-toggle.btn-instagram.focus {
  609. color: #fff;
  610. background-color: #26455d;
  611. border-color: rgba(0, 0, 0, 0.2);
  612. }
  613. .btn-instagram:active,
  614. .btn-instagram.active,
  615. .open > .dropdown-toggle.btn-instagram {
  616. background-image: none;
  617. }
  618. .btn-instagram.disabled:hover,
  619. .btn-instagram[disabled]:hover,
  620. fieldset[disabled] .btn-instagram:hover,
  621. .btn-instagram.disabled:focus,
  622. .btn-instagram[disabled]:focus,
  623. fieldset[disabled] .btn-instagram:focus,
  624. .btn-instagram.disabled.focus,
  625. .btn-instagram[disabled].focus,
  626. fieldset[disabled] .btn-instagram.focus {
  627. background-color: #3f729b;
  628. border-color: rgba(0, 0, 0, 0.2);
  629. }
  630. .btn-instagram .badge {
  631. color: #3f729b;
  632. background-color: #fff;
  633. }
  634. .btn-linkedin {
  635. color: #fff;
  636. background-color: #007bb6;
  637. border-color: rgba(0, 0, 0, 0.2);
  638. }
  639. .btn-linkedin:focus,
  640. .btn-linkedin.focus {
  641. color: #fff;
  642. background-color: #005983;
  643. border-color: rgba(0, 0, 0, 0.2);
  644. }
  645. .btn-linkedin:hover {
  646. color: #fff;
  647. background-color: #005983;
  648. border-color: rgba(0, 0, 0, 0.2);
  649. }
  650. .btn-linkedin:active,
  651. .btn-linkedin.active,
  652. .open > .dropdown-toggle.btn-linkedin {
  653. color: #fff;
  654. background-color: #005983;
  655. border-color: rgba(0, 0, 0, 0.2);
  656. }
  657. .btn-linkedin:active:hover,
  658. .btn-linkedin.active:hover,
  659. .open > .dropdown-toggle.btn-linkedin:hover,
  660. .btn-linkedin:active:focus,
  661. .btn-linkedin.active:focus,
  662. .open > .dropdown-toggle.btn-linkedin:focus,
  663. .btn-linkedin:active.focus,
  664. .btn-linkedin.active.focus,
  665. .open > .dropdown-toggle.btn-linkedin.focus {
  666. color: #fff;
  667. background-color: #00405f;
  668. border-color: rgba(0, 0, 0, 0.2);
  669. }
  670. .btn-linkedin:active,
  671. .btn-linkedin.active,
  672. .open > .dropdown-toggle.btn-linkedin {
  673. background-image: none;
  674. }
  675. .btn-linkedin.disabled:hover,
  676. .btn-linkedin[disabled]:hover,
  677. fieldset[disabled] .btn-linkedin:hover,
  678. .btn-linkedin.disabled:focus,
  679. .btn-linkedin[disabled]:focus,
  680. fieldset[disabled] .btn-linkedin:focus,
  681. .btn-linkedin.disabled.focus,
  682. .btn-linkedin[disabled].focus,
  683. fieldset[disabled] .btn-linkedin.focus {
  684. background-color: #007bb6;
  685. border-color: rgba(0, 0, 0, 0.2);
  686. }
  687. .btn-linkedin .badge {
  688. color: #007bb6;
  689. background-color: #fff;
  690. }
  691. .btn-microsoft {
  692. color: #fff;
  693. background-color: #2672ec;
  694. border-color: rgba(0, 0, 0, 0.2);
  695. }
  696. .btn-microsoft:focus,
  697. .btn-microsoft.focus {
  698. color: #fff;
  699. background-color: #125acd;
  700. border-color: rgba(0, 0, 0, 0.2);
  701. }
  702. .btn-microsoft:hover {
  703. color: #fff;
  704. background-color: #125acd;
  705. border-color: rgba(0, 0, 0, 0.2);
  706. }
  707. .btn-microsoft:active,
  708. .btn-microsoft.active,
  709. .open > .dropdown-toggle.btn-microsoft {
  710. color: #fff;
  711. background-color: #125acd;
  712. border-color: rgba(0, 0, 0, 0.2);
  713. }
  714. .btn-microsoft:active:hover,
  715. .btn-microsoft.active:hover,
  716. .open > .dropdown-toggle.btn-microsoft:hover,
  717. .btn-microsoft:active:focus,
  718. .btn-microsoft.active:focus,
  719. .open > .dropdown-toggle.btn-microsoft:focus,
  720. .btn-microsoft:active.focus,
  721. .btn-microsoft.active.focus,
  722. .open > .dropdown-toggle.btn-microsoft.focus {
  723. color: #fff;
  724. background-color: #0f4bac;
  725. border-color: rgba(0, 0, 0, 0.2);
  726. }
  727. .btn-microsoft:active,
  728. .btn-microsoft.active,
  729. .open > .dropdown-toggle.btn-microsoft {
  730. background-image: none;
  731. }
  732. .btn-microsoft.disabled:hover,
  733. .btn-microsoft[disabled]:hover,
  734. fieldset[disabled] .btn-microsoft:hover,
  735. .btn-microsoft.disabled:focus,
  736. .btn-microsoft[disabled]:focus,
  737. fieldset[disabled] .btn-microsoft:focus,
  738. .btn-microsoft.disabled.focus,
  739. .btn-microsoft[disabled].focus,
  740. fieldset[disabled] .btn-microsoft.focus {
  741. background-color: #2672ec;
  742. border-color: rgba(0, 0, 0, 0.2);
  743. }
  744. .btn-microsoft .badge {
  745. color: #2672ec;
  746. background-color: #fff;
  747. }
  748. .btn-openid {
  749. color: #fff;
  750. background-color: #f7931e;
  751. border-color: rgba(0, 0, 0, 0.2);
  752. }
  753. .btn-openid:focus,
  754. .btn-openid.focus {
  755. color: #fff;
  756. background-color: #da7908;
  757. border-color: rgba(0, 0, 0, 0.2);
  758. }
  759. .btn-openid:hover {
  760. color: #fff;
  761. background-color: #da7908;
  762. border-color: rgba(0, 0, 0, 0.2);
  763. }
  764. .btn-openid:active,
  765. .btn-openid.active,
  766. .open > .dropdown-toggle.btn-openid {
  767. color: #fff;
  768. background-color: #da7908;
  769. border-color: rgba(0, 0, 0, 0.2);
  770. }
  771. .btn-openid:active:hover,
  772. .btn-openid.active:hover,
  773. .open > .dropdown-toggle.btn-openid:hover,
  774. .btn-openid:active:focus,
  775. .btn-openid.active:focus,
  776. .open > .dropdown-toggle.btn-openid:focus,
  777. .btn-openid:active.focus,
  778. .btn-openid.active.focus,
  779. .open > .dropdown-toggle.btn-openid.focus {
  780. color: #fff;
  781. background-color: #b86607;
  782. border-color: rgba(0, 0, 0, 0.2);
  783. }
  784. .btn-openid:active,
  785. .btn-openid.active,
  786. .open > .dropdown-toggle.btn-openid {
  787. background-image: none;
  788. }
  789. .btn-openid.disabled:hover,
  790. .btn-openid[disabled]:hover,
  791. fieldset[disabled] .btn-openid:hover,
  792. .btn-openid.disabled:focus,
  793. .btn-openid[disabled]:focus,
  794. fieldset[disabled] .btn-openid:focus,
  795. .btn-openid.disabled.focus,
  796. .btn-openid[disabled].focus,
  797. fieldset[disabled] .btn-openid.focus {
  798. background-color: #f7931e;
  799. border-color: rgba(0, 0, 0, 0.2);
  800. }
  801. .btn-openid .badge {
  802. color: #f7931e;
  803. background-color: #fff;
  804. }
  805. .btn-pinterest {
  806. color: #fff;
  807. background-color: #cb2027;
  808. border-color: rgba(0, 0, 0, 0.2);
  809. }
  810. .btn-pinterest:focus,
  811. .btn-pinterest.focus {
  812. color: #fff;
  813. background-color: #9f191f;
  814. border-color: rgba(0, 0, 0, 0.2);
  815. }
  816. .btn-pinterest:hover {
  817. color: #fff;
  818. background-color: #9f191f;
  819. border-color: rgba(0, 0, 0, 0.2);
  820. }
  821. .btn-pinterest:active,
  822. .btn-pinterest.active,
  823. .open > .dropdown-toggle.btn-pinterest {
  824. color: #fff;
  825. background-color: #9f191f;
  826. border-color: rgba(0, 0, 0, 0.2);
  827. }
  828. .btn-pinterest:active:hover,
  829. .btn-pinterest.active:hover,
  830. .open > .dropdown-toggle.btn-pinterest:hover,
  831. .btn-pinterest:active:focus,
  832. .btn-pinterest.active:focus,
  833. .open > .dropdown-toggle.btn-pinterest:focus,
  834. .btn-pinterest:active.focus,
  835. .btn-pinterest.active.focus,
  836. .open > .dropdown-toggle.btn-pinterest.focus {
  837. color: #fff;
  838. background-color: #801419;
  839. border-color: rgba(0, 0, 0, 0.2);
  840. }
  841. .btn-pinterest:active,
  842. .btn-pinterest.active,
  843. .open > .dropdown-toggle.btn-pinterest {
  844. background-image: none;
  845. }
  846. .btn-pinterest.disabled:hover,
  847. .btn-pinterest[disabled]:hover,
  848. fieldset[disabled] .btn-pinterest:hover,
  849. .btn-pinterest.disabled:focus,
  850. .btn-pinterest[disabled]:focus,
  851. fieldset[disabled] .btn-pinterest:focus,
  852. .btn-pinterest.disabled.focus,
  853. .btn-pinterest[disabled].focus,
  854. fieldset[disabled] .btn-pinterest.focus {
  855. background-color: #cb2027;
  856. border-color: rgba(0, 0, 0, 0.2);
  857. }
  858. .btn-pinterest .badge {
  859. color: #cb2027;
  860. background-color: #fff;
  861. }
  862. .btn-reddit {
  863. color: #000;
  864. background-color: #eff7ff;
  865. border-color: rgba(0, 0, 0, 0.2);
  866. }
  867. .btn-reddit:focus,
  868. .btn-reddit.focus {
  869. color: #000;
  870. background-color: #bcddff;
  871. border-color: rgba(0, 0, 0, 0.2);
  872. }
  873. .btn-reddit:hover {
  874. color: #000;
  875. background-color: #bcddff;
  876. border-color: rgba(0, 0, 0, 0.2);
  877. }
  878. .btn-reddit:active,
  879. .btn-reddit.active,
  880. .open > .dropdown-toggle.btn-reddit {
  881. color: #000;
  882. background-color: #bcddff;
  883. border-color: rgba(0, 0, 0, 0.2);
  884. }
  885. .btn-reddit:active:hover,
  886. .btn-reddit.active:hover,
  887. .open > .dropdown-toggle.btn-reddit:hover,
  888. .btn-reddit:active:focus,
  889. .btn-reddit.active:focus,
  890. .open > .dropdown-toggle.btn-reddit:focus,
  891. .btn-reddit:active.focus,
  892. .btn-reddit.active.focus,
  893. .open > .dropdown-toggle.btn-reddit.focus {
  894. color: #000;
  895. background-color: #98ccff;
  896. border-color: rgba(0, 0, 0, 0.2);
  897. }
  898. .btn-reddit:active,
  899. .btn-reddit.active,
  900. .open > .dropdown-toggle.btn-reddit {
  901. background-image: none;
  902. }
  903. .btn-reddit.disabled:hover,
  904. .btn-reddit[disabled]:hover,
  905. fieldset[disabled] .btn-reddit:hover,
  906. .btn-reddit.disabled:focus,
  907. .btn-reddit[disabled]:focus,
  908. fieldset[disabled] .btn-reddit:focus,
  909. .btn-reddit.disabled.focus,
  910. .btn-reddit[disabled].focus,
  911. fieldset[disabled] .btn-reddit.focus {
  912. background-color: #eff7ff;
  913. border-color: rgba(0, 0, 0, 0.2);
  914. }
  915. .btn-reddit .badge {
  916. color: #eff7ff;
  917. background-color: #000;
  918. }
  919. .btn-soundcloud {
  920. color: #fff;
  921. background-color: #ff5500;
  922. border-color: rgba(0, 0, 0, 0.2);
  923. }
  924. .btn-soundcloud:focus,
  925. .btn-soundcloud.focus {
  926. color: #fff;
  927. background-color: #cc4400;
  928. border-color: rgba(0, 0, 0, 0.2);
  929. }
  930. .btn-soundcloud:hover {
  931. color: #fff;
  932. background-color: #cc4400;
  933. border-color: rgba(0, 0, 0, 0.2);
  934. }
  935. .btn-soundcloud:active,
  936. .btn-soundcloud.active,
  937. .open > .dropdown-toggle.btn-soundcloud {
  938. color: #fff;
  939. background-color: #cc4400;
  940. border-color: rgba(0, 0, 0, 0.2);
  941. }
  942. .btn-soundcloud:active:hover,
  943. .btn-soundcloud.active:hover,
  944. .open > .dropdown-toggle.btn-soundcloud:hover,
  945. .btn-soundcloud:active:focus,
  946. .btn-soundcloud.active:focus,
  947. .open > .dropdown-toggle.btn-soundcloud:focus,
  948. .btn-soundcloud:active.focus,
  949. .btn-soundcloud.active.focus,
  950. .open > .dropdown-toggle.btn-soundcloud.focus {
  951. color: #fff;
  952. background-color: #a83800;
  953. border-color: rgba(0, 0, 0, 0.2);
  954. }
  955. .btn-soundcloud:active,
  956. .btn-soundcloud.active,
  957. .open > .dropdown-toggle.btn-soundcloud {
  958. background-image: none;
  959. }
  960. .btn-soundcloud.disabled:hover,
  961. .btn-soundcloud[disabled]:hover,
  962. fieldset[disabled] .btn-soundcloud:hover,
  963. .btn-soundcloud.disabled:focus,
  964. .btn-soundcloud[disabled]:focus,
  965. fieldset[disabled] .btn-soundcloud:focus,
  966. .btn-soundcloud.disabled.focus,
  967. .btn-soundcloud[disabled].focus,
  968. fieldset[disabled] .btn-soundcloud.focus {
  969. background-color: #ff5500;
  970. border-color: rgba(0, 0, 0, 0.2);
  971. }
  972. .btn-soundcloud .badge {
  973. color: #ff5500;
  974. background-color: #fff;
  975. }
  976. .btn-tumblr {
  977. color: #fff;
  978. background-color: #2c4762;
  979. border-color: rgba(0, 0, 0, 0.2);
  980. }
  981. .btn-tumblr:focus,
  982. .btn-tumblr.focus {
  983. color: #fff;
  984. background-color: #1c2d3f;
  985. border-color: rgba(0, 0, 0, 0.2);
  986. }
  987. .btn-tumblr:hover {
  988. color: #fff;
  989. background-color: #1c2d3f;
  990. border-color: rgba(0, 0, 0, 0.2);
  991. }
  992. .btn-tumblr:active,
  993. .btn-tumblr.active,
  994. .open > .dropdown-toggle.btn-tumblr {
  995. color: #fff;
  996. background-color: #1c2d3f;
  997. border-color: rgba(0, 0, 0, 0.2);
  998. }
  999. .btn-tumblr:active:hover,
  1000. .btn-tumblr.active:hover,
  1001. .open > .dropdown-toggle.btn-tumblr:hover,
  1002. .btn-tumblr:active:focus,
  1003. .btn-tumblr.active:focus,
  1004. .open > .dropdown-toggle.btn-tumblr:focus,
  1005. .btn-tumblr:active.focus,
  1006. .btn-tumblr.active.focus,
  1007. .open > .dropdown-toggle.btn-tumblr.focus {
  1008. color: #fff;
  1009. background-color: #111c26;
  1010. border-color: rgba(0, 0, 0, 0.2);
  1011. }
  1012. .btn-tumblr:active,
  1013. .btn-tumblr.active,
  1014. .open > .dropdown-toggle.btn-tumblr {
  1015. background-image: none;
  1016. }
  1017. .btn-tumblr.disabled:hover,
  1018. .btn-tumblr[disabled]:hover,
  1019. fieldset[disabled] .btn-tumblr:hover,
  1020. .btn-tumblr.disabled:focus,
  1021. .btn-tumblr[disabled]:focus,
  1022. fieldset[disabled] .btn-tumblr:focus,
  1023. .btn-tumblr.disabled.focus,
  1024. .btn-tumblr[disabled].focus,
  1025. fieldset[disabled] .btn-tumblr.focus {
  1026. background-color: #2c4762;
  1027. border-color: rgba(0, 0, 0, 0.2);
  1028. }
  1029. .btn-tumblr .badge {
  1030. color: #2c4762;
  1031. background-color: #fff;
  1032. }
  1033. .btn-twitter {
  1034. color: #fff;
  1035. background-color: #55acee;
  1036. border-color: rgba(0, 0, 0, 0.2);
  1037. }
  1038. .btn-twitter:focus,
  1039. .btn-twitter.focus {
  1040. color: #fff;
  1041. background-color: #2795e9;
  1042. border-color: rgba(0, 0, 0, 0.2);
  1043. }
  1044. .btn-twitter:hover {
  1045. color: #fff;
  1046. background-color: #2795e9;
  1047. border-color: rgba(0, 0, 0, 0.2);
  1048. }
  1049. .btn-twitter:active,
  1050. .btn-twitter.active,
  1051. .open > .dropdown-toggle.btn-twitter {
  1052. color: #fff;
  1053. background-color: #2795e9;
  1054. border-color: rgba(0, 0, 0, 0.2);
  1055. }
  1056. .btn-twitter:active:hover,
  1057. .btn-twitter.active:hover,
  1058. .open > .dropdown-toggle.btn-twitter:hover,
  1059. .btn-twitter:active:focus,
  1060. .btn-twitter.active:focus,
  1061. .open > .dropdown-toggle.btn-twitter:focus,
  1062. .btn-twitter:active.focus,
  1063. .btn-twitter.active.focus,
  1064. .open > .dropdown-toggle.btn-twitter.focus {
  1065. color: #fff;
  1066. background-color: #1583d7;
  1067. border-color: rgba(0, 0, 0, 0.2);
  1068. }
  1069. .btn-twitter:active,
  1070. .btn-twitter.active,
  1071. .open > .dropdown-toggle.btn-twitter {
  1072. background-image: none;
  1073. }
  1074. .btn-twitter.disabled:hover,
  1075. .btn-twitter[disabled]:hover,
  1076. fieldset[disabled] .btn-twitter:hover,
  1077. .btn-twitter.disabled:focus,
  1078. .btn-twitter[disabled]:focus,
  1079. fieldset[disabled] .btn-twitter:focus,
  1080. .btn-twitter.disabled.focus,
  1081. .btn-twitter[disabled].focus,
  1082. fieldset[disabled] .btn-twitter.focus {
  1083. background-color: #55acee;
  1084. border-color: rgba(0, 0, 0, 0.2);
  1085. }
  1086. .btn-twitter .badge {
  1087. color: #55acee;
  1088. background-color: #fff;
  1089. }
  1090. .btn-vimeo {
  1091. color: #fff;
  1092. background-color: #1ab7ea;
  1093. border-color: rgba(0, 0, 0, 0.2);
  1094. }
  1095. .btn-vimeo:focus,
  1096. .btn-vimeo.focus {
  1097. color: #fff;
  1098. background-color: #1295bf;
  1099. border-color: rgba(0, 0, 0, 0.2);
  1100. }
  1101. .btn-vimeo:hover {
  1102. color: #fff;
  1103. background-color: #1295bf;
  1104. border-color: rgba(0, 0, 0, 0.2);
  1105. }
  1106. .btn-vimeo:active,
  1107. .btn-vimeo.active,
  1108. .open > .dropdown-toggle.btn-vimeo {
  1109. color: #fff;
  1110. background-color: #1295bf;
  1111. border-color: rgba(0, 0, 0, 0.2);
  1112. }
  1113. .btn-vimeo:active:hover,
  1114. .btn-vimeo.active:hover,
  1115. .open > .dropdown-toggle.btn-vimeo:hover,
  1116. .btn-vimeo:active:focus,
  1117. .btn-vimeo.active:focus,
  1118. .open > .dropdown-toggle.btn-vimeo:focus,
  1119. .btn-vimeo:active.focus,
  1120. .btn-vimeo.active.focus,
  1121. .open > .dropdown-toggle.btn-vimeo.focus {
  1122. color: #fff;
  1123. background-color: #0f7b9f;
  1124. border-color: rgba(0, 0, 0, 0.2);
  1125. }
  1126. .btn-vimeo:active,
  1127. .btn-vimeo.active,
  1128. .open > .dropdown-toggle.btn-vimeo {
  1129. background-image: none;
  1130. }
  1131. .btn-vimeo.disabled:hover,
  1132. .btn-vimeo[disabled]:hover,
  1133. fieldset[disabled] .btn-vimeo:hover,
  1134. .btn-vimeo.disabled:focus,
  1135. .btn-vimeo[disabled]:focus,
  1136. fieldset[disabled] .btn-vimeo:focus,
  1137. .btn-vimeo.disabled.focus,
  1138. .btn-vimeo[disabled].focus,
  1139. fieldset[disabled] .btn-vimeo.focus {
  1140. background-color: #1ab7ea;
  1141. border-color: rgba(0, 0, 0, 0.2);
  1142. }
  1143. .btn-vimeo .badge {
  1144. color: #1ab7ea;
  1145. background-color: #fff;
  1146. }
  1147. .btn-vk {
  1148. color: #fff;
  1149. background-color: #587ea3;
  1150. border-color: rgba(0, 0, 0, 0.2);
  1151. }
  1152. .btn-vk:focus,
  1153. .btn-vk.focus {
  1154. color: #fff;
  1155. background-color: #466482;
  1156. border-color: rgba(0, 0, 0, 0.2);
  1157. }
  1158. .btn-vk:hover {
  1159. color: #fff;
  1160. background-color: #466482;
  1161. border-color: rgba(0, 0, 0, 0.2);
  1162. }
  1163. .btn-vk:active,
  1164. .btn-vk.active,
  1165. .open > .dropdown-toggle.btn-vk {
  1166. color: #fff;
  1167. background-color: #466482;
  1168. border-color: rgba(0, 0, 0, 0.2);
  1169. }
  1170. .btn-vk:active:hover,
  1171. .btn-vk.active:hover,
  1172. .open > .dropdown-toggle.btn-vk:hover,
  1173. .btn-vk:active:focus,
  1174. .btn-vk.active:focus,
  1175. .open > .dropdown-toggle.btn-vk:focus,
  1176. .btn-vk:active.focus,
  1177. .btn-vk.active.focus,
  1178. .open > .dropdown-toggle.btn-vk.focus {
  1179. color: #fff;
  1180. background-color: #3a526b;
  1181. border-color: rgba(0, 0, 0, 0.2);
  1182. }
  1183. .btn-vk:active,
  1184. .btn-vk.active,
  1185. .open > .dropdown-toggle.btn-vk {
  1186. background-image: none;
  1187. }
  1188. .btn-vk.disabled:hover,
  1189. .btn-vk[disabled]:hover,
  1190. fieldset[disabled] .btn-vk:hover,
  1191. .btn-vk.disabled:focus,
  1192. .btn-vk[disabled]:focus,
  1193. fieldset[disabled] .btn-vk:focus,
  1194. .btn-vk.disabled.focus,
  1195. .btn-vk[disabled].focus,
  1196. fieldset[disabled] .btn-vk.focus {
  1197. background-color: #587ea3;
  1198. border-color: rgba(0, 0, 0, 0.2);
  1199. }
  1200. .btn-vk .badge {
  1201. color: #587ea3;
  1202. background-color: #fff;
  1203. }
  1204. .btn-yahoo {
  1205. color: #fff;
  1206. background-color: #720e9e;
  1207. border-color: rgba(0, 0, 0, 0.2);
  1208. }
  1209. .btn-yahoo:focus,
  1210. .btn-yahoo.focus {
  1211. color: #fff;
  1212. background-color: #500a6f;
  1213. border-color: rgba(0, 0, 0, 0.2);
  1214. }
  1215. .btn-yahoo:hover {
  1216. color: #fff;
  1217. background-color: #500a6f;
  1218. border-color: rgba(0, 0, 0, 0.2);
  1219. }
  1220. .btn-yahoo:active,
  1221. .btn-yahoo.active,
  1222. .open > .dropdown-toggle.btn-yahoo {
  1223. color: #fff;
  1224. background-color: #500a6f;
  1225. border-color: rgba(0, 0, 0, 0.2);
  1226. }
  1227. .btn-yahoo:active:hover,
  1228. .btn-yahoo.active:hover,
  1229. .open > .dropdown-toggle.btn-yahoo:hover,
  1230. .btn-yahoo:active:focus,
  1231. .btn-yahoo.active:focus,
  1232. .open > .dropdown-toggle.btn-yahoo:focus,
  1233. .btn-yahoo:active.focus,
  1234. .btn-yahoo.active.focus,
  1235. .open > .dropdown-toggle.btn-yahoo.focus {
  1236. color: #fff;
  1237. background-color: #39074e;
  1238. border-color: rgba(0, 0, 0, 0.2);
  1239. }
  1240. .btn-yahoo:active,
  1241. .btn-yahoo.active,
  1242. .open > .dropdown-toggle.btn-yahoo {
  1243. background-image: none;
  1244. }
  1245. .btn-yahoo.disabled:hover,
  1246. .btn-yahoo[disabled]:hover,
  1247. fieldset[disabled] .btn-yahoo:hover,
  1248. .btn-yahoo.disabled:focus,
  1249. .btn-yahoo[disabled]:focus,
  1250. fieldset[disabled] .btn-yahoo:focus,
  1251. .btn-yahoo.disabled.focus,
  1252. .btn-yahoo[disabled].focus,
  1253. fieldset[disabled] .btn-yahoo.focus {
  1254. background-color: #720e9e;
  1255. border-color: rgba(0, 0, 0, 0.2);
  1256. }
  1257. .btn-yahoo .badge {
  1258. color: #720e9e;
  1259. background-color: #fff;
  1260. }