bootstrap-rtl.css 32 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510
  1. /*******************************************************************************
  2. * bootstrap-rtl (Version 3.1.1)
  3. * Author: Morteza Ansarinia <ansarinia@me.com> (http://github.com/morteza)
  4. * Created on: May 25,2014
  5. * Project: bootstrap-rtl
  6. * Copyright: See the file "LICENSE" for the full license governing this code.
  7. *******************************************************************************/
  8. html {
  9. direction: rtl;
  10. }
  11. body {
  12. direction: rtl;
  13. }
  14. .list-unstyled {
  15. padding-right: 0;
  16. padding-left: none;
  17. }
  18. .list-inline {
  19. padding-right: 0;
  20. padding-left: none;
  21. margin-right: -5px;
  22. margin-left: 0;
  23. }
  24. dd {
  25. margin-right: 0;
  26. margin-left: none;
  27. }
  28. @media (min-width: 768px) {
  29. .dl-horizontal dt {
  30. float: right;
  31. clear: right;
  32. text-align: left;
  33. }
  34. .dl-horizontal dd {
  35. margin-right: 180px;
  36. margin-left: 0;
  37. }
  38. }
  39. blockquote {
  40. border-right: 5px solid #eeeeee;
  41. border-left: 0;
  42. }
  43. .blockquote-reverse,
  44. blockquote.pull-left {
  45. padding-left: 15px;
  46. padding-right: 0;
  47. border-left: 5px solid #eeeeee;
  48. border-right: 0;
  49. text-align: left;
  50. }
  51. .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  52. position: relative;
  53. min-height: 1px;
  54. padding-left: 15px;
  55. padding-right: 15px;
  56. }
  57. .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  58. float: right;
  59. }
  60. .col-xs-12 {
  61. width: 100%;
  62. }
  63. .col-xs-11 {
  64. width: 91.66666667%;
  65. }
  66. .col-xs-10 {
  67. width: 83.33333333%;
  68. }
  69. .col-xs-9 {
  70. width: 75%;
  71. }
  72. .col-xs-8 {
  73. width: 66.66666667%;
  74. }
  75. .col-xs-7 {
  76. width: 58.33333333%;
  77. }
  78. .col-xs-6 {
  79. width: 50%;
  80. }
  81. .col-xs-5 {
  82. width: 41.66666667%;
  83. }
  84. .col-xs-4 {
  85. width: 33.33333333%;
  86. }
  87. .col-xs-3 {
  88. width: 25%;
  89. }
  90. .col-xs-2 {
  91. width: 16.66666667%;
  92. }
  93. .col-xs-1 {
  94. width: 8.33333333%;
  95. }
  96. .col-xs-pull-12 {
  97. left: 100%;
  98. right: auto;
  99. }
  100. .col-xs-pull-11 {
  101. left: 91.66666667%;
  102. right: auto;
  103. }
  104. .col-xs-pull-10 {
  105. left: 83.33333333%;
  106. right: auto;
  107. }
  108. .col-xs-pull-9 {
  109. left: 75%;
  110. right: auto;
  111. }
  112. .col-xs-pull-8 {
  113. left: 66.66666667%;
  114. right: auto;
  115. }
  116. .col-xs-pull-7 {
  117. left: 58.33333333%;
  118. right: auto;
  119. }
  120. .col-xs-pull-6 {
  121. left: 50%;
  122. right: auto;
  123. }
  124. .col-xs-pull-5 {
  125. left: 41.66666667%;
  126. right: auto;
  127. }
  128. .col-xs-pull-4 {
  129. left: 33.33333333%;
  130. right: auto;
  131. }
  132. .col-xs-pull-3 {
  133. left: 25%;
  134. right: auto;
  135. }
  136. .col-xs-pull-2 {
  137. left: 16.66666667%;
  138. right: auto;
  139. }
  140. .col-xs-pull-1 {
  141. left: 8.33333333%;
  142. right: auto;
  143. }
  144. .col-xs-pull-0 {
  145. left: auto;
  146. right: auto;
  147. }
  148. .col-xs-push-12 {
  149. right: 100%;
  150. left: 0;
  151. }
  152. .col-xs-push-11 {
  153. right: 91.66666667%;
  154. left: 0;
  155. }
  156. .col-xs-push-10 {
  157. right: 83.33333333%;
  158. left: 0;
  159. }
  160. .col-xs-push-9 {
  161. right: 75%;
  162. left: 0;
  163. }
  164. .col-xs-push-8 {
  165. right: 66.66666667%;
  166. left: 0;
  167. }
  168. .col-xs-push-7 {
  169. right: 58.33333333%;
  170. left: 0;
  171. }
  172. .col-xs-push-6 {
  173. right: 50%;
  174. left: 0;
  175. }
  176. .col-xs-push-5 {
  177. right: 41.66666667%;
  178. left: 0;
  179. }
  180. .col-xs-push-4 {
  181. right: 33.33333333%;
  182. left: 0;
  183. }
  184. .col-xs-push-3 {
  185. right: 25%;
  186. left: 0;
  187. }
  188. .col-xs-push-2 {
  189. right: 16.66666667%;
  190. left: 0;
  191. }
  192. .col-xs-push-1 {
  193. right: 8.33333333%;
  194. left: 0;
  195. }
  196. .col-xs-push-0 {
  197. right: auto;
  198. left: 0;
  199. }
  200. .col-xs-offset-12 {
  201. margin-right: 100%;
  202. margin-left: 0;
  203. }
  204. .col-xs-offset-11 {
  205. margin-right: 91.66666667%;
  206. margin-left: 0;
  207. }
  208. .col-xs-offset-10 {
  209. margin-right: 83.33333333%;
  210. margin-left: 0;
  211. }
  212. .col-xs-offset-9 {
  213. margin-right: 75%;
  214. margin-left: 0;
  215. }
  216. .col-xs-offset-8 {
  217. margin-right: 66.66666667%;
  218. margin-left: 0;
  219. }
  220. .col-xs-offset-7 {
  221. margin-right: 58.33333333%;
  222. margin-left: 0;
  223. }
  224. .col-xs-offset-6 {
  225. margin-right: 50%;
  226. margin-left: 0;
  227. }
  228. .col-xs-offset-5 {
  229. margin-right: 41.66666667%;
  230. margin-left: 0;
  231. }
  232. .col-xs-offset-4 {
  233. margin-right: 33.33333333%;
  234. margin-left: 0;
  235. }
  236. .col-xs-offset-3 {
  237. margin-right: 25%;
  238. margin-left: 0;
  239. }
  240. .col-xs-offset-2 {
  241. margin-right: 16.66666667%;
  242. margin-left: 0;
  243. }
  244. .col-xs-offset-1 {
  245. margin-right: 8.33333333%;
  246. margin-left: 0;
  247. }
  248. .col-xs-offset-0 {
  249. margin-right: 0%;
  250. margin-left: 0;
  251. }
  252. @media (min-width: 768px) {
  253. .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
  254. float: right;
  255. }
  256. .col-sm-12 {
  257. width: 100%;
  258. }
  259. .col-sm-11 {
  260. width: 91.66666667%;
  261. }
  262. .col-sm-10 {
  263. width: 83.33333333%;
  264. }
  265. .col-sm-9 {
  266. width: 75%;
  267. }
  268. .col-sm-8 {
  269. width: 66.66666667%;
  270. }
  271. .col-sm-7 {
  272. width: 58.33333333%;
  273. }
  274. .col-sm-6 {
  275. width: 50%;
  276. }
  277. .col-sm-5 {
  278. width: 41.66666667%;
  279. }
  280. .col-sm-4 {
  281. width: 33.33333333%;
  282. }
  283. .col-sm-3 {
  284. width: 25%;
  285. }
  286. .col-sm-2 {
  287. width: 16.66666667%;
  288. }
  289. .col-sm-1 {
  290. width: 8.33333333%;
  291. }
  292. .col-sm-pull-12 {
  293. left: 100%;
  294. right: auto;
  295. }
  296. .col-sm-pull-11 {
  297. left: 91.66666667%;
  298. right: auto;
  299. }
  300. .col-sm-pull-10 {
  301. left: 83.33333333%;
  302. right: auto;
  303. }
  304. .col-sm-pull-9 {
  305. left: 75%;
  306. right: auto;
  307. }
  308. .col-sm-pull-8 {
  309. left: 66.66666667%;
  310. right: auto;
  311. }
  312. .col-sm-pull-7 {
  313. left: 58.33333333%;
  314. right: auto;
  315. }
  316. .col-sm-pull-6 {
  317. left: 50%;
  318. right: auto;
  319. }
  320. .col-sm-pull-5 {
  321. left: 41.66666667%;
  322. right: auto;
  323. }
  324. .col-sm-pull-4 {
  325. left: 33.33333333%;
  326. right: auto;
  327. }
  328. .col-sm-pull-3 {
  329. left: 25%;
  330. right: auto;
  331. }
  332. .col-sm-pull-2 {
  333. left: 16.66666667%;
  334. right: auto;
  335. }
  336. .col-sm-pull-1 {
  337. left: 8.33333333%;
  338. right: auto;
  339. }
  340. .col-sm-pull-0 {
  341. left: auto;
  342. right: auto;
  343. }
  344. .col-sm-push-12 {
  345. right: 100%;
  346. left: 0;
  347. }
  348. .col-sm-push-11 {
  349. right: 91.66666667%;
  350. left: 0;
  351. }
  352. .col-sm-push-10 {
  353. right: 83.33333333%;
  354. left: 0;
  355. }
  356. .col-sm-push-9 {
  357. right: 75%;
  358. left: 0;
  359. }
  360. .col-sm-push-8 {
  361. right: 66.66666667%;
  362. left: 0;
  363. }
  364. .col-sm-push-7 {
  365. right: 58.33333333%;
  366. left: 0;
  367. }
  368. .col-sm-push-6 {
  369. right: 50%;
  370. left: 0;
  371. }
  372. .col-sm-push-5 {
  373. right: 41.66666667%;
  374. left: 0;
  375. }
  376. .col-sm-push-4 {
  377. right: 33.33333333%;
  378. left: 0;
  379. }
  380. .col-sm-push-3 {
  381. right: 25%;
  382. left: 0;
  383. }
  384. .col-sm-push-2 {
  385. right: 16.66666667%;
  386. left: 0;
  387. }
  388. .col-sm-push-1 {
  389. right: 8.33333333%;
  390. left: 0;
  391. }
  392. .col-sm-push-0 {
  393. right: auto;
  394. left: 0;
  395. }
  396. .col-sm-offset-12 {
  397. margin-right: 100%;
  398. margin-left: 0;
  399. }
  400. .col-sm-offset-11 {
  401. margin-right: 91.66666667%;
  402. margin-left: 0;
  403. }
  404. .col-sm-offset-10 {
  405. margin-right: 83.33333333%;
  406. margin-left: 0;
  407. }
  408. .col-sm-offset-9 {
  409. margin-right: 75%;
  410. margin-left: 0;
  411. }
  412. .col-sm-offset-8 {
  413. margin-right: 66.66666667%;
  414. margin-left: 0;
  415. }
  416. .col-sm-offset-7 {
  417. margin-right: 58.33333333%;
  418. margin-left: 0;
  419. }
  420. .col-sm-offset-6 {
  421. margin-right: 50%;
  422. margin-left: 0;
  423. }
  424. .col-sm-offset-5 {
  425. margin-right: 41.66666667%;
  426. margin-left: 0;
  427. }
  428. .col-sm-offset-4 {
  429. margin-right: 33.33333333%;
  430. margin-left: 0;
  431. }
  432. .col-sm-offset-3 {
  433. margin-right: 25%;
  434. margin-left: 0;
  435. }
  436. .col-sm-offset-2 {
  437. margin-right: 16.66666667%;
  438. margin-left: 0;
  439. }
  440. .col-sm-offset-1 {
  441. margin-right: 8.33333333%;
  442. margin-left: 0;
  443. }
  444. .col-sm-offset-0 {
  445. margin-right: 0%;
  446. margin-left: 0;
  447. }
  448. }
  449. @media (min-width: 992px) {
  450. .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
  451. float: right;
  452. }
  453. .col-md-12 {
  454. width: 100%;
  455. }
  456. .col-md-11 {
  457. width: 91.66666667%;
  458. }
  459. .col-md-10 {
  460. width: 83.33333333%;
  461. }
  462. .col-md-9 {
  463. width: 75%;
  464. }
  465. .col-md-8 {
  466. width: 66.66666667%;
  467. }
  468. .col-md-7 {
  469. width: 58.33333333%;
  470. }
  471. .col-md-6 {
  472. width: 50%;
  473. }
  474. .col-md-5 {
  475. width: 41.66666667%;
  476. }
  477. .col-md-4 {
  478. width: 33.33333333%;
  479. }
  480. .col-md-3 {
  481. width: 25%;
  482. }
  483. .col-md-2 {
  484. width: 16.66666667%;
  485. }
  486. .col-md-1 {
  487. width: 8.33333333%;
  488. }
  489. .col-md-pull-12 {
  490. left: 100%;
  491. right: auto;
  492. }
  493. .col-md-pull-11 {
  494. left: 91.66666667%;
  495. right: auto;
  496. }
  497. .col-md-pull-10 {
  498. left: 83.33333333%;
  499. right: auto;
  500. }
  501. .col-md-pull-9 {
  502. left: 75%;
  503. right: auto;
  504. }
  505. .col-md-pull-8 {
  506. left: 66.66666667%;
  507. right: auto;
  508. }
  509. .col-md-pull-7 {
  510. left: 58.33333333%;
  511. right: auto;
  512. }
  513. .col-md-pull-6 {
  514. left: 50%;
  515. right: auto;
  516. }
  517. .col-md-pull-5 {
  518. left: 41.66666667%;
  519. right: auto;
  520. }
  521. .col-md-pull-4 {
  522. left: 33.33333333%;
  523. right: auto;
  524. }
  525. .col-md-pull-3 {
  526. left: 25%;
  527. right: auto;
  528. }
  529. .col-md-pull-2 {
  530. left: 16.66666667%;
  531. right: auto;
  532. }
  533. .col-md-pull-1 {
  534. left: 8.33333333%;
  535. right: auto;
  536. }
  537. .col-md-pull-0 {
  538. left: auto;
  539. right: auto;
  540. }
  541. .col-md-push-12 {
  542. right: 100%;
  543. left: 0;
  544. }
  545. .col-md-push-11 {
  546. right: 91.66666667%;
  547. left: 0;
  548. }
  549. .col-md-push-10 {
  550. right: 83.33333333%;
  551. left: 0;
  552. }
  553. .col-md-push-9 {
  554. right: 75%;
  555. left: 0;
  556. }
  557. .col-md-push-8 {
  558. right: 66.66666667%;
  559. left: 0;
  560. }
  561. .col-md-push-7 {
  562. right: 58.33333333%;
  563. left: 0;
  564. }
  565. .col-md-push-6 {
  566. right: 50%;
  567. left: 0;
  568. }
  569. .col-md-push-5 {
  570. right: 41.66666667%;
  571. left: 0;
  572. }
  573. .col-md-push-4 {
  574. right: 33.33333333%;
  575. left: 0;
  576. }
  577. .col-md-push-3 {
  578. right: 25%;
  579. left: 0;
  580. }
  581. .col-md-push-2 {
  582. right: 16.66666667%;
  583. left: 0;
  584. }
  585. .col-md-push-1 {
  586. right: 8.33333333%;
  587. left: 0;
  588. }
  589. .col-md-push-0 {
  590. right: auto;
  591. left: 0;
  592. }
  593. .col-md-offset-12 {
  594. margin-right: 100%;
  595. margin-left: 0;
  596. }
  597. .col-md-offset-11 {
  598. margin-right: 91.66666667%;
  599. margin-left: 0;
  600. }
  601. .col-md-offset-10 {
  602. margin-right: 83.33333333%;
  603. margin-left: 0;
  604. }
  605. .col-md-offset-9 {
  606. margin-right: 75%;
  607. margin-left: 0;
  608. }
  609. .col-md-offset-8 {
  610. margin-right: 66.66666667%;
  611. margin-left: 0;
  612. }
  613. .col-md-offset-7 {
  614. margin-right: 58.33333333%;
  615. margin-left: 0;
  616. }
  617. .col-md-offset-6 {
  618. margin-right: 50%;
  619. margin-left: 0;
  620. }
  621. .col-md-offset-5 {
  622. margin-right: 41.66666667%;
  623. margin-left: 0;
  624. }
  625. .col-md-offset-4 {
  626. margin-right: 33.33333333%;
  627. margin-left: 0;
  628. }
  629. .col-md-offset-3 {
  630. margin-right: 25%;
  631. margin-left: 0;
  632. }
  633. .col-md-offset-2 {
  634. margin-right: 16.66666667%;
  635. margin-left: 0;
  636. }
  637. .col-md-offset-1 {
  638. margin-right: 8.33333333%;
  639. margin-left: 0;
  640. }
  641. .col-md-offset-0 {
  642. margin-right: 0%;
  643. margin-left: 0;
  644. }
  645. }
  646. @media (min-width: 1200px) {
  647. .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
  648. float: right;
  649. }
  650. .col-lg-12 {
  651. width: 100%;
  652. }
  653. .col-lg-11 {
  654. width: 91.66666667%;
  655. }
  656. .col-lg-10 {
  657. width: 83.33333333%;
  658. }
  659. .col-lg-9 {
  660. width: 75%;
  661. }
  662. .col-lg-8 {
  663. width: 66.66666667%;
  664. }
  665. .col-lg-7 {
  666. width: 58.33333333%;
  667. }
  668. .col-lg-6 {
  669. width: 50%;
  670. }
  671. .col-lg-5 {
  672. width: 41.66666667%;
  673. }
  674. .col-lg-4 {
  675. width: 33.33333333%;
  676. }
  677. .col-lg-3 {
  678. width: 25%;
  679. }
  680. .col-lg-2 {
  681. width: 16.66666667%;
  682. }
  683. .col-lg-1 {
  684. width: 8.33333333%;
  685. }
  686. .col-lg-pull-12 {
  687. left: 100%;
  688. right: auto;
  689. }
  690. .col-lg-pull-11 {
  691. left: 91.66666667%;
  692. right: auto;
  693. }
  694. .col-lg-pull-10 {
  695. left: 83.33333333%;
  696. right: auto;
  697. }
  698. .col-lg-pull-9 {
  699. left: 75%;
  700. right: auto;
  701. }
  702. .col-lg-pull-8 {
  703. left: 66.66666667%;
  704. right: auto;
  705. }
  706. .col-lg-pull-7 {
  707. left: 58.33333333%;
  708. right: auto;
  709. }
  710. .col-lg-pull-6 {
  711. left: 50%;
  712. right: auto;
  713. }
  714. .col-lg-pull-5 {
  715. left: 41.66666667%;
  716. right: auto;
  717. }
  718. .col-lg-pull-4 {
  719. left: 33.33333333%;
  720. right: auto;
  721. }
  722. .col-lg-pull-3 {
  723. left: 25%;
  724. right: auto;
  725. }
  726. .col-lg-pull-2 {
  727. left: 16.66666667%;
  728. right: auto;
  729. }
  730. .col-lg-pull-1 {
  731. left: 8.33333333%;
  732. right: auto;
  733. }
  734. .col-lg-pull-0 {
  735. left: auto;
  736. right: auto;
  737. }
  738. .col-lg-push-12 {
  739. right: 100%;
  740. left: 0;
  741. }
  742. .col-lg-push-11 {
  743. right: 91.66666667%;
  744. left: 0;
  745. }
  746. .col-lg-push-10 {
  747. right: 83.33333333%;
  748. left: 0;
  749. }
  750. .col-lg-push-9 {
  751. right: 75%;
  752. left: 0;
  753. }
  754. .col-lg-push-8 {
  755. right: 66.66666667%;
  756. left: 0;
  757. }
  758. .col-lg-push-7 {
  759. right: 58.33333333%;
  760. left: 0;
  761. }
  762. .col-lg-push-6 {
  763. right: 50%;
  764. left: 0;
  765. }
  766. .col-lg-push-5 {
  767. right: 41.66666667%;
  768. left: 0;
  769. }
  770. .col-lg-push-4 {
  771. right: 33.33333333%;
  772. left: 0;
  773. }
  774. .col-lg-push-3 {
  775. right: 25%;
  776. left: 0;
  777. }
  778. .col-lg-push-2 {
  779. right: 16.66666667%;
  780. left: 0;
  781. }
  782. .col-lg-push-1 {
  783. right: 8.33333333%;
  784. left: 0;
  785. }
  786. .col-lg-push-0 {
  787. right: auto;
  788. left: 0;
  789. }
  790. .col-lg-offset-12 {
  791. margin-right: 100%;
  792. margin-left: 0;
  793. }
  794. .col-lg-offset-11 {
  795. margin-right: 91.66666667%;
  796. margin-left: 0;
  797. }
  798. .col-lg-offset-10 {
  799. margin-right: 83.33333333%;
  800. margin-left: 0;
  801. }
  802. .col-lg-offset-9 {
  803. margin-right: 75%;
  804. margin-left: 0;
  805. }
  806. .col-lg-offset-8 {
  807. margin-right: 66.66666667%;
  808. margin-left: 0;
  809. }
  810. .col-lg-offset-7 {
  811. margin-right: 58.33333333%;
  812. margin-left: 0;
  813. }
  814. .col-lg-offset-6 {
  815. margin-right: 50%;
  816. margin-left: 0;
  817. }
  818. .col-lg-offset-5 {
  819. margin-right: 41.66666667%;
  820. margin-left: 0;
  821. }
  822. .col-lg-offset-4 {
  823. margin-right: 33.33333333%;
  824. margin-left: 0;
  825. }
  826. .col-lg-offset-3 {
  827. margin-right: 25%;
  828. margin-left: 0;
  829. }
  830. .col-lg-offset-2 {
  831. margin-right: 16.66666667%;
  832. margin-left: 0;
  833. }
  834. .col-lg-offset-1 {
  835. margin-right: 8.33333333%;
  836. margin-left: 0;
  837. }
  838. .col-lg-offset-0 {
  839. margin-right: 0%;
  840. margin-left: 0;
  841. }
  842. }
  843. th {
  844. text-align: right;
  845. }
  846. @media screen and (max-width: 767px) {
  847. .table-responsive > .table-bordered {
  848. border: 0;
  849. }
  850. .table-responsive > .table-bordered > thead > tr > th:first-child,
  851. .table-responsive > .table-bordered > tbody > tr > th:first-child,
  852. .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  853. .table-responsive > .table-bordered > thead > tr > td:first-child,
  854. .table-responsive > .table-bordered > tbody > tr > td:first-child,
  855. .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  856. border-right: 0;
  857. botder-left: auto;
  858. }
  859. .table-responsive > .table-bordered > thead > tr > th:last-child,
  860. .table-responsive > .table-bordered > tbody > tr > th:last-child,
  861. .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  862. .table-responsive > .table-bordered > thead > tr > td:last-child,
  863. .table-responsive > .table-bordered > tbody > tr > td:last-child,
  864. .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  865. border-left: 0;
  866. border-right: auto;
  867. }
  868. }
  869. .radio label,
  870. .checkbox label {
  871. padding-right: 20px;
  872. padding-left: auto;
  873. }
  874. .radio input[type="radio"],
  875. .radio-inline input[type="radio"],
  876. .checkbox input[type="checkbox"],
  877. .checkbox-inline input[type="checkbox"] {
  878. float: right;
  879. margin-right: 20px;
  880. margin-left: 0;
  881. }
  882. .radio-inline,
  883. .checkbox-inline {
  884. padding-right: 20px;
  885. padding-left: 0;
  886. }
  887. .radio-inline + .radio-inline,
  888. .checkbox-inline + .checkbox-inline {
  889. margin-right: 10px;
  890. margin-left: 0;
  891. }
  892. .has-feedback .form-control {
  893. padding-left: 42.5px;
  894. padding-right: auto;
  895. }
  896. .form-control-feedback {
  897. left: 0;
  898. right: auto;
  899. }
  900. @media (min-width: 768px) {
  901. .form-inline .radio,
  902. .form-inline .checkbox {
  903. padding-right: 0;
  904. padding-left: auto;
  905. }
  906. .form-inline .radio input[type="radio"],
  907. .form-inline .checkbox input[type="checkbox"] {
  908. margin-right: 0;
  909. margin-left: auto;
  910. }
  911. }
  912. @media (min-width: 768px) {
  913. .form-horizontal .control-label {
  914. text-align: left;
  915. }
  916. }
  917. .form-horizontal .has-feedback .form-control-feedback {
  918. left: 15px;
  919. right: auto;
  920. }
  921. .caret {
  922. margin-right: 2px;
  923. margin-left: 0;
  924. }
  925. .dropdown-menu {
  926. right: 0;
  927. left: auto;
  928. float: left;
  929. text-align: right;
  930. }
  931. .dropdown-menu.pull-left {
  932. left: 0;
  933. float: right;
  934. right: auto;
  935. }
  936. .pull-left > .dropdown-menu {
  937. left: 0;
  938. float: right;
  939. right: auto;
  940. }
  941. .navbar-nav.pull-left > li > .dropdown-menu,
  942. .navbar-nav > li > .dropdown-menu.pull-left {
  943. right: auto;
  944. left: 0;
  945. }
  946. .btn-group > .btn,
  947. .btn-group-vertical > .btn {
  948. float: right;
  949. }
  950. .btn-group > .btn:hover,
  951. .btn-group-vertical > .btn:hover,
  952. .btn-group > .btn:focus,
  953. .btn-group-vertical > .btn:focus,
  954. .btn-group > .btn:active,
  955. .btn-group-vertical > .btn:active,
  956. .btn-group > .btn.active,
  957. .btn-group-vertical > .btn.active {
  958. z-index: 2;
  959. }
  960. .btn-group .btn + .btn,
  961. .btn-group .btn + .btn-group,
  962. .btn-group .btn-group + .btn,
  963. .btn-group .btn-group + .btn-group {
  964. margin-right: -1px;
  965. margin-left: 0px;
  966. }
  967. .btn-toolbar {
  968. margin-right: -5px;
  969. margin-left: 0px;
  970. }
  971. .btn-toolbar .btn-group,
  972. .btn-toolbar .input-group {
  973. float: right;
  974. }
  975. .btn-toolbar > .btn,
  976. .btn-toolbar > .btn-group,
  977. .btn-toolbar > .input-group {
  978. margin-right: 5px;
  979. margin-left: 0px;
  980. }
  981. .btn-group > .btn:first-child {
  982. margin-right: 0;
  983. }
  984. .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  985. border-bottom-left-radius: 0;
  986. border-top-left-radius: 0;
  987. }
  988. .btn-group > .btn:last-child:not(:first-child),
  989. .btn-group > .dropdown-toggle:not(:first-child) {
  990. border-bottom-right-radius: 0;
  991. border-top-right-radius: 0;
  992. }
  993. .btn-group > .btn-group {
  994. float: right;
  995. }
  996. .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  997. border-radius: 0;
  998. }
  999. .btn-group > .btn-group:first-child > .btn:last-child,
  1000. .btn-group > .btn-group:first-child > .dropdown-toggle {
  1001. border-bottom-left-radius: 0;
  1002. border-top-left-radius: 0;
  1003. }
  1004. .btn-group > .btn-group:last-child > .btn:first-child {
  1005. border-bottom-right-radius: 0;
  1006. border-top-right-radius: 0;
  1007. }
  1008. .btn .caret {
  1009. margin-right: 0;
  1010. }
  1011. .btn-group-vertical > .btn + .btn,
  1012. .btn-group-vertical > .btn + .btn-group,
  1013. .btn-group-vertical > .btn-group + .btn,
  1014. .btn-group-vertical > .btn-group + .btn-group {
  1015. margin-top: -1px;
  1016. margin-right: 0;
  1017. }
  1018. .input-group .form-control {
  1019. float: right;
  1020. }
  1021. .input-group .form-control:first-child,
  1022. .input-group-addon:first-child,
  1023. .input-group-btn:first-child > .btn,
  1024. .input-group-btn:first-child > .btn-group > .btn,
  1025. .input-group-btn:first-child > .dropdown-toggle,
  1026. .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
  1027. .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  1028. border-bottom-right-radius: 4px;
  1029. border-top-right-radius: 4px;
  1030. border-bottom-left-radius: 0;
  1031. border-top-left-radius: 0;
  1032. }
  1033. .input-group-addon:first-child {
  1034. border-right: 1px solid #cccccc;
  1035. border-left: 0px;
  1036. }
  1037. .input-group .form-control:last-child,
  1038. .input-group-addon:last-child,
  1039. .input-group-btn:last-child > .btn,
  1040. .input-group-btn:last-child > .btn-group > .btn,
  1041. .input-group-btn:last-child > .dropdown-toggle,
  1042. .input-group-btn:first-child > .btn:not(:first-child),
  1043. .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  1044. border-bottom-left-radius: 4px;
  1045. border-top-left-radius: 4px;
  1046. border-bottom-right-radius: 0;
  1047. border-top-right-radius: 0;
  1048. }
  1049. .input-group-addon:last-child {
  1050. border-left: 1px solid #cccccc;
  1051. border-right: 0px;
  1052. }
  1053. .input-group-btn > .btn + .btn {
  1054. margin-right: -1px;
  1055. margin-left: auto;
  1056. }
  1057. .input-group-btn:first-child > .btn,
  1058. .input-group-btn:first-child > .btn-group {
  1059. margin-left: -1px;
  1060. margin-right: auto;
  1061. }
  1062. .input-group-btn:last-child > .btn,
  1063. .input-group-btn:last-child > .btn-group {
  1064. margin-right: -1px;
  1065. margin-left: auto;
  1066. }
  1067. .nav {
  1068. padding-right: 0;
  1069. padding-left: auto;
  1070. }
  1071. .nav-tabs > li {
  1072. float: right;
  1073. }
  1074. .nav-tabs > li > a {
  1075. margin-left: auto;
  1076. margin-right: -2px;
  1077. border-radius: 4px 4px 0 0;
  1078. }
  1079. .nav-pills > li {
  1080. float: right;
  1081. }
  1082. .nav-pills > li > a {
  1083. border-radius: 4px;
  1084. }
  1085. .nav-pills > li + li {
  1086. margin-right: 2px;
  1087. margin-left: auto;
  1088. }
  1089. .nav-stacked > li {
  1090. float: none;
  1091. }
  1092. .nav-stacked > li + li {
  1093. margin-right: 0;
  1094. margin-left: auto;
  1095. }
  1096. .nav-justified > .dropdown .dropdown-menu {
  1097. right: auto;
  1098. }
  1099. .nav-tabs-justified > li > a {
  1100. margin-left: 0;
  1101. margin-right: auto;
  1102. }
  1103. @media (min-width: 768px) {
  1104. .nav-tabs-justified > li > a {
  1105. border-radius: 4px 4px 0 0;
  1106. }
  1107. }
  1108. @media (min-width: 768px) {
  1109. .navbar-header {
  1110. float: right;
  1111. }
  1112. }
  1113. .navbar-collapse {
  1114. padding-right: 15px;
  1115. padding-left: 15px;
  1116. }
  1117. .navbar-brand {
  1118. float: right;
  1119. }
  1120. @media (min-width: 768px) {
  1121. .navbar > .container .navbar-brand,
  1122. .navbar > .container-fluid .navbar-brand {
  1123. margin-right: -15px;
  1124. margin-left: auto;
  1125. }
  1126. }
  1127. .navbar-toggle {
  1128. float: left;
  1129. margin-left: 15px;
  1130. margin-right: auto;
  1131. }
  1132. @media (max-width: 767px) {
  1133. .navbar-nav .open .dropdown-menu > li > a,
  1134. .navbar-nav .open .dropdown-menu .dropdown-header {
  1135. padding: 5px 25px 5px 15px;
  1136. }
  1137. }
  1138. @media (min-width: 768px) {
  1139. .navbar-nav {
  1140. float: right;
  1141. }
  1142. .navbar-nav > li {
  1143. float: right;
  1144. }
  1145. .navbar-nav.navbar-right:last-child {
  1146. margin-left: -15px;
  1147. margin-right: auto;
  1148. }
  1149. }
  1150. @media (min-width: 768px) {
  1151. .navbar-text {
  1152. float: right;
  1153. }
  1154. .navbar-text.navbar-right:last-child {
  1155. margin-left: 0;
  1156. margin-right: auto;
  1157. }
  1158. }
  1159. .pagination {
  1160. padding-right: 0;
  1161. }
  1162. .pagination > li > a,
  1163. .pagination > li > span {
  1164. float: right;
  1165. margin-right: -1px;
  1166. margin-left: 0px;
  1167. }
  1168. .pagination > li:first-child > a,
  1169. .pagination > li:first-child > span {
  1170. margin-left: 0;
  1171. border-bottom-right-radius: 4px;
  1172. border-top-right-radius: 4px;
  1173. border-bottom-left-radius: 0;
  1174. border-top-left-radius: 0;
  1175. }
  1176. .pagination > li:last-child > a,
  1177. .pagination > li:last-child > span {
  1178. margin-right: -1px;
  1179. border-bottom-left-radius: 4px;
  1180. border-top-left-radius: 4px;
  1181. border-bottom-right-radius: 0;
  1182. border-top-right-radius: 0;
  1183. }
  1184. .pager {
  1185. padding-right: 0;
  1186. padding-left: none;
  1187. }
  1188. .pager .next > a,
  1189. .pager .next > span {
  1190. float: left;
  1191. }
  1192. .pager .previous > a,
  1193. .pager .previous > span {
  1194. float: right;
  1195. }
  1196. .nav-pills > li > a > .badge {
  1197. margin-left: 0px;
  1198. margin-right: 3px;
  1199. }
  1200. .alert-dismissable {
  1201. padding-left: 35px;
  1202. padding-right: 15px;
  1203. }
  1204. .alert-dismissable .close {
  1205. top: -2px;
  1206. right: 0;
  1207. left: 21;
  1208. }
  1209. .progress-bar {
  1210. float: right;
  1211. }
  1212. .media-list {
  1213. padding-right: 0;
  1214. padding-left: none;
  1215. list-style: none;
  1216. }
  1217. .list-group {
  1218. padding-right: 0;
  1219. padding-left: none;
  1220. }
  1221. .list-group-item > .badge {
  1222. float: left;
  1223. }
  1224. .list-group-item > .badge + .badge {
  1225. margin-ight: 5px;
  1226. margin-left: 0;
  1227. }
  1228. .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
  1229. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
  1230. .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
  1231. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
  1232. .panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
  1233. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
  1234. .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
  1235. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  1236. border-top-right-radius: 3px;
  1237. border-top-left-radius: 0;
  1238. }
  1239. .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
  1240. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
  1241. .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
  1242. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
  1243. .panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
  1244. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
  1245. .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
  1246. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  1247. border-top-left-radius: 3px;
  1248. border-top-right-radius: 0;
  1249. }
  1250. .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
  1251. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
  1252. .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
  1253. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
  1254. .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
  1255. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
  1256. .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
  1257. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  1258. border-bottom-left-radius: 3px;
  1259. border-top-right-radius: 0;
  1260. }
  1261. .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
  1262. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
  1263. .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
  1264. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
  1265. .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
  1266. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
  1267. .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
  1268. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  1269. border-bottom-right-radius: 3px;
  1270. border-top-left-radius: 0;
  1271. }
  1272. .panel > .table-bordered > thead > tr > th:first-child,
  1273. .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
  1274. .panel > .table-bordered > tbody > tr > th:first-child,
  1275. .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
  1276. .panel > .table-bordered > tfoot > tr > th:first-child,
  1277. .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  1278. .panel > .table-bordered > thead > tr > td:first-child,
  1279. .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
  1280. .panel > .table-bordered > tbody > tr > td:first-child,
  1281. .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
  1282. .panel > .table-bordered > tfoot > tr > td:first-child,
  1283. .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  1284. border-right: 0;
  1285. border-left: none;
  1286. }
  1287. .panel > .table-bordered > thead > tr > th:last-child,
  1288. .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
  1289. .panel > .table-bordered > tbody > tr > th:last-child,
  1290. .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
  1291. .panel > .table-bordered > tfoot > tr > th:last-child,
  1292. .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  1293. .panel > .table-bordered > thead > tr > td:last-child,
  1294. .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
  1295. .panel > .table-bordered > tbody > tr > td:last-child,
  1296. .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
  1297. .panel > .table-bordered > tfoot > tr > td:last-child,
  1298. .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  1299. border-right: none;
  1300. border-left: 0;
  1301. }
  1302. .embed-responsive .embed-responsive-item,
  1303. .embed-responsive iframe,
  1304. .embed-responsive embed,
  1305. .embed-responsive object {
  1306. right: 0;
  1307. left: none;
  1308. }
  1309. .close {
  1310. float: left;
  1311. }
  1312. .modal-footer {
  1313. text-align: left;
  1314. }
  1315. .modal-footer .btn + .btn {
  1316. margin-left: 0;
  1317. margin-right: 5px;
  1318. }
  1319. .modal-footer .btn-group .btn + .btn {
  1320. margin-right: -1px;
  1321. margin-left: 0;
  1322. }
  1323. .modal-footer .btn-block + .btn-block {
  1324. margin-right: 0;
  1325. margin-left: none;
  1326. }
  1327. .popover {
  1328. right: 0;
  1329. left: none;
  1330. text-align: right;
  1331. }
  1332. .popover.top > .arrow {
  1333. right: 50%;
  1334. left: none;
  1335. margin-right: -11px;
  1336. margin-left: 0;
  1337. }
  1338. .popover.top > .arrow:after {
  1339. margin-right: -10px;
  1340. margin-left: 0;
  1341. }
  1342. .carousel-inner > .item {
  1343. -webkit-transition: 0.6s ease-in-out right;
  1344. -o-transition: 0.6s ease-in-out right;
  1345. transition: 0.6s ease-in-out right;
  1346. }
  1347. .carousel-inner > .active {
  1348. right: 0;
  1349. }
  1350. .carousel-inner > .next {
  1351. right: 100%;
  1352. left: 0;
  1353. }
  1354. .carousel-inner > .prev {
  1355. right: -100%;
  1356. }
  1357. .carousel-inner > .next.left,
  1358. .carousel-inner > .prev.right {
  1359. right: 0;
  1360. }
  1361. .carousel-inner > .active.right {
  1362. left: -100%;
  1363. }
  1364. .carousel-inner > .active.left {
  1365. right: 100%;
  1366. }
  1367. .carousel-control {
  1368. right: 0;
  1369. bottom: 0;
  1370. }
  1371. .carousel-control.left {
  1372. right: auto;
  1373. left: 0;
  1374. background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.5) 0%), color-stop(rgba(0, 0, 0, 0.0001) 100%));
  1375. background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  1376. background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  1377. background-repeat: repeat-x;
  1378. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
  1379. }
  1380. .carousel-control.right {
  1381. left: auto;
  1382. right: 0;
  1383. background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.0001) 0%), color-stop(rgba(0, 0, 0, 0.5) 100%));
  1384. background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  1385. background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  1386. background-repeat: repeat-x;
  1387. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
  1388. }
  1389. .carousel-control .icon-prev,
  1390. .carousel-control .glyphicon-chevron-left {
  1391. left: 50%;
  1392. right: auto;
  1393. margin-right: -10px;
  1394. }
  1395. .carousel-control .icon-next,
  1396. .carousel-control .glyphicon-chevron-right {
  1397. right: 50%;
  1398. left: auto;
  1399. margin-left: -10px;
  1400. }
  1401. .carousel-indicators {
  1402. right: 50%;
  1403. left: 0;
  1404. margin-right: -30%;
  1405. margin-left: 0;
  1406. padding-left: 0;
  1407. }
  1408. @media screen and (min-width: 768px) {
  1409. .carousel-control .glyphicon-chevron-left,
  1410. .carousel-control .icon-prev {
  1411. margin-left: 0;
  1412. margin-right: -15px;
  1413. }
  1414. .carousel-control .glyphicon-chevron-right,
  1415. .carousel-control .icon-next {
  1416. margin-left: 0;
  1417. margin-right: -15px;
  1418. }
  1419. .carousel-caption {
  1420. left: 20%;
  1421. right: 20%;
  1422. padding-bottom: 30px;
  1423. }
  1424. }
  1425. .pull-right.flip {
  1426. float: left !important;
  1427. }
  1428. .pull-left.flip {
  1429. float: right !important;
  1430. }
  1431. .has-success .help-block,
  1432. .has-success .control-label,
  1433. .has-success .radio,
  1434. .has-success .checkbox,
  1435. .has-success .radio-inline,
  1436. .has-success .checkbox-inline {
  1437. color: #3c763d;
  1438. }
  1439. .has-success .form-control {
  1440. border-color: #3c763d;
  1441. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  1442. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  1443. }
  1444. .has-success .form-control:focus {
  1445. border-color: #2b542c;
  1446. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
  1447. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
  1448. }
  1449. .has-success .input-group-addon {
  1450. color: #3c763d;
  1451. background-color: #dff0d8;
  1452. border-color: #3c763d;
  1453. }
  1454. .has-success .form-control-feedback {
  1455. color: #3c763d;
  1456. }
  1457. .has-warning .help-block,
  1458. .has-warning .control-label,
  1459. .has-warning .radio,
  1460. .has-warning .checkbox,
  1461. .has-warning .radio-inline,
  1462. .has-warning .checkbox-inline {
  1463. color: #8a6d3b;
  1464. }
  1465. .has-warning .form-control {
  1466. border-color: #8a6d3b;
  1467. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  1468. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  1469. }
  1470. .has-warning .form-control:focus {
  1471. border-color: #66512c;
  1472. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
  1473. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
  1474. }
  1475. .has-warning .input-group-addon {
  1476. color: #8a6d3b;
  1477. background-color: #fcf8e3;
  1478. border-color: #8a6d3b;
  1479. }
  1480. .has-warning .form-control-feedback {
  1481. color: #8a6d3b;
  1482. }
  1483. .has-error .help-block,
  1484. .has-error .control-label,
  1485. .has-error .radio,
  1486. .has-error .checkbox,
  1487. .has-error .radio-inline,
  1488. .has-error .checkbox-inline {
  1489. color: #a94442;
  1490. }
  1491. .has-error .form-control {
  1492. border-color: #a94442;
  1493. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  1494. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  1495. }
  1496. .has-error .form-control:focus {
  1497. border-color: #843534;
  1498. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  1499. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  1500. }
  1501. .has-error .input-group-addon {
  1502. color: #a94442;
  1503. background-color: #f2dede;
  1504. border-color: #a94442;
  1505. }
  1506. .has-error .form-control-feedback {
  1507. color: #a94442;
  1508. }