bootstrap-rtl.css 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536
  1. /*******************************************************************************
  2. * bootstrap-rtl (Version 3.2.0-rc1)
  3. * Author: Morteza Ansarinia <ansarinia@me.com> (http://github.com/morteza)
  4. * Created on: June 13,2014
  5. * Project: bootstrap-rtl
  6. * Copyright: See the file "LICENSE.md" 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. border-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. .navbar-nav.navbar-right.flip {
  1150. float: left !important;
  1151. }
  1152. .navbar-nav.navbar-right .dropdown-menu {
  1153. left: 0;
  1154. right: auto;
  1155. }
  1156. }
  1157. @media (min-width: 768px) {
  1158. .navbar-text {
  1159. float: right;
  1160. }
  1161. .navbar-text.navbar-right:last-child {
  1162. margin-left: 0;
  1163. margin-right: auto;
  1164. }
  1165. }
  1166. .pagination {
  1167. padding-right: 0;
  1168. }
  1169. .pagination > li > a,
  1170. .pagination > li > span {
  1171. float: right;
  1172. margin-right: -1px;
  1173. margin-left: 0px;
  1174. }
  1175. .pagination > li:first-child > a,
  1176. .pagination > li:first-child > span {
  1177. margin-left: 0;
  1178. border-bottom-right-radius: 4px;
  1179. border-top-right-radius: 4px;
  1180. border-bottom-left-radius: 0;
  1181. border-top-left-radius: 0;
  1182. }
  1183. .pagination > li:last-child > a,
  1184. .pagination > li:last-child > span {
  1185. margin-right: -1px;
  1186. border-bottom-left-radius: 4px;
  1187. border-top-left-radius: 4px;
  1188. border-bottom-right-radius: 0;
  1189. border-top-right-radius: 0;
  1190. }
  1191. .pager {
  1192. padding-right: 0;
  1193. padding-left: none;
  1194. }
  1195. .pager .next > a,
  1196. .pager .next > span {
  1197. float: left;
  1198. }
  1199. .pager .previous > a,
  1200. .pager .previous > span {
  1201. float: right;
  1202. }
  1203. .nav-pills > li > a > .badge {
  1204. margin-left: 0px;
  1205. margin-right: 3px;
  1206. }
  1207. .alert-dismissable {
  1208. padding-left: 35px;
  1209. padding-right: 15px;
  1210. }
  1211. .alert-dismissable .close {
  1212. top: -2px;
  1213. right: 0;
  1214. left: 21;
  1215. }
  1216. .progress-bar {
  1217. float: right;
  1218. }
  1219. .media,
  1220. .media-body {
  1221. overflow: hidden;
  1222. zoom: 1;
  1223. }
  1224. .media > .pull-left {
  1225. margin-right: 10px;
  1226. }
  1227. .media > .pull-left.flip {
  1228. margin-right: 0;
  1229. margin-left: 10px;
  1230. }
  1231. .media > .pull-right {
  1232. margin-left: 10px;
  1233. }
  1234. .media > .pull-right.flip {
  1235. margin-left: 0;
  1236. margin-right: 10px;
  1237. }
  1238. .media-list {
  1239. padding-right: 0;
  1240. padding-left: auto;
  1241. list-style: none;
  1242. }
  1243. .list-group {
  1244. padding-right: 0;
  1245. padding-left: none;
  1246. }
  1247. .list-group-item > .badge {
  1248. float: left;
  1249. }
  1250. .list-group-item > .badge + .badge {
  1251. margin-ight: 5px;
  1252. margin-left: 0;
  1253. }
  1254. .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
  1255. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
  1256. .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
  1257. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
  1258. .panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
  1259. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
  1260. .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
  1261. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  1262. border-top-right-radius: 3px;
  1263. border-top-left-radius: 0;
  1264. }
  1265. .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
  1266. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
  1267. .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
  1268. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
  1269. .panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
  1270. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
  1271. .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
  1272. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  1273. border-top-left-radius: 3px;
  1274. border-top-right-radius: 0;
  1275. }
  1276. .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
  1277. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
  1278. .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
  1279. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
  1280. .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
  1281. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
  1282. .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
  1283. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  1284. border-bottom-left-radius: 3px;
  1285. border-top-right-radius: 0;
  1286. }
  1287. .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
  1288. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
  1289. .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
  1290. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
  1291. .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
  1292. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
  1293. .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
  1294. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  1295. border-bottom-right-radius: 3px;
  1296. border-top-left-radius: 0;
  1297. }
  1298. .panel > .table-bordered > thead > tr > th:first-child,
  1299. .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
  1300. .panel > .table-bordered > tbody > tr > th:first-child,
  1301. .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
  1302. .panel > .table-bordered > tfoot > tr > th:first-child,
  1303. .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  1304. .panel > .table-bordered > thead > tr > td:first-child,
  1305. .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
  1306. .panel > .table-bordered > tbody > tr > td:first-child,
  1307. .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
  1308. .panel > .table-bordered > tfoot > tr > td:first-child,
  1309. .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  1310. border-right: 0;
  1311. border-left: none;
  1312. }
  1313. .panel > .table-bordered > thead > tr > th:last-child,
  1314. .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
  1315. .panel > .table-bordered > tbody > tr > th:last-child,
  1316. .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
  1317. .panel > .table-bordered > tfoot > tr > th:last-child,
  1318. .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  1319. .panel > .table-bordered > thead > tr > td:last-child,
  1320. .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
  1321. .panel > .table-bordered > tbody > tr > td:last-child,
  1322. .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
  1323. .panel > .table-bordered > tfoot > tr > td:last-child,
  1324. .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  1325. border-right: none;
  1326. border-left: 0;
  1327. }
  1328. .embed-responsive .embed-responsive-item,
  1329. .embed-responsive iframe,
  1330. .embed-responsive embed,
  1331. .embed-responsive object {
  1332. right: 0;
  1333. left: none;
  1334. }
  1335. .close {
  1336. float: left;
  1337. }
  1338. .modal-footer {
  1339. text-align: left;
  1340. }
  1341. .modal-footer .btn + .btn {
  1342. margin-left: 0;
  1343. margin-right: 5px;
  1344. }
  1345. .modal-footer .btn-group .btn + .btn {
  1346. margin-right: -1px;
  1347. margin-left: 0;
  1348. }
  1349. .modal-footer .btn-block + .btn-block {
  1350. margin-right: 0;
  1351. margin-left: none;
  1352. }
  1353. .popover {
  1354. right: 0;
  1355. left: none;
  1356. text-align: right;
  1357. }
  1358. .popover.top > .arrow {
  1359. right: 50%;
  1360. left: none;
  1361. margin-right: -11px;
  1362. margin-left: 0;
  1363. }
  1364. .popover.top > .arrow:after {
  1365. margin-right: -10px;
  1366. margin-left: 0;
  1367. }
  1368. .carousel-inner > .item {
  1369. -webkit-transition: 0.6s ease-in-out right;
  1370. -o-transition: 0.6s ease-in-out right;
  1371. transition: 0.6s ease-in-out right;
  1372. }
  1373. .carousel-inner > .active {
  1374. right: 0;
  1375. }
  1376. .carousel-inner > .next {
  1377. right: 100%;
  1378. left: 0;
  1379. }
  1380. .carousel-inner > .prev {
  1381. right: -100%;
  1382. }
  1383. .carousel-inner > .next.left,
  1384. .carousel-inner > .prev.right {
  1385. right: 0;
  1386. }
  1387. .carousel-inner > .active.right {
  1388. left: -100%;
  1389. }
  1390. .carousel-inner > .active.left {
  1391. right: 100%;
  1392. }
  1393. .carousel-control {
  1394. right: 0;
  1395. bottom: 0;
  1396. }
  1397. .carousel-control.left {
  1398. right: auto;
  1399. left: 0;
  1400. background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.5) 0%), color-stop(rgba(0, 0, 0, 0.0001) 100%));
  1401. background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  1402. background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  1403. background-repeat: repeat-x;
  1404. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
  1405. }
  1406. .carousel-control.right {
  1407. left: auto;
  1408. right: 0;
  1409. background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.0001) 0%), color-stop(rgba(0, 0, 0, 0.5) 100%));
  1410. background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  1411. background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  1412. background-repeat: repeat-x;
  1413. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
  1414. }
  1415. .carousel-control .icon-prev,
  1416. .carousel-control .glyphicon-chevron-left {
  1417. left: 50%;
  1418. right: auto;
  1419. margin-right: -10px;
  1420. }
  1421. .carousel-control .icon-next,
  1422. .carousel-control .glyphicon-chevron-right {
  1423. right: 50%;
  1424. left: auto;
  1425. margin-left: -10px;
  1426. }
  1427. .carousel-indicators {
  1428. right: 50%;
  1429. left: 0;
  1430. margin-right: -30%;
  1431. margin-left: 0;
  1432. padding-left: 0;
  1433. }
  1434. @media screen and (min-width: 768px) {
  1435. .carousel-control .glyphicon-chevron-left,
  1436. .carousel-control .icon-prev {
  1437. margin-left: 0;
  1438. margin-right: -15px;
  1439. }
  1440. .carousel-control .glyphicon-chevron-right,
  1441. .carousel-control .icon-next {
  1442. margin-left: 0;
  1443. margin-right: -15px;
  1444. }
  1445. .carousel-caption {
  1446. left: 20%;
  1447. right: 20%;
  1448. padding-bottom: 30px;
  1449. }
  1450. }
  1451. .pull-right.flip {
  1452. float: left !important;
  1453. }
  1454. .pull-left.flip {
  1455. float: right !important;
  1456. }
  1457. .has-success .help-block,
  1458. .has-success .control-label,
  1459. .has-success .radio,
  1460. .has-success .checkbox,
  1461. .has-success .radio-inline,
  1462. .has-success .checkbox-inline {
  1463. color: #3c763d;
  1464. }
  1465. .has-success .form-control {
  1466. border-color: #3c763d;
  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-success .form-control:focus {
  1471. border-color: #2b542c;
  1472. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
  1473. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
  1474. }
  1475. .has-success .input-group-addon {
  1476. color: #3c763d;
  1477. background-color: #dff0d8;
  1478. border-color: #3c763d;
  1479. }
  1480. .has-success .form-control-feedback {
  1481. color: #3c763d;
  1482. }
  1483. .has-warning .help-block,
  1484. .has-warning .control-label,
  1485. .has-warning .radio,
  1486. .has-warning .checkbox,
  1487. .has-warning .radio-inline,
  1488. .has-warning .checkbox-inline {
  1489. color: #8a6d3b;
  1490. }
  1491. .has-warning .form-control {
  1492. border-color: #8a6d3b;
  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-warning .form-control:focus {
  1497. border-color: #66512c;
  1498. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
  1499. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
  1500. }
  1501. .has-warning .input-group-addon {
  1502. color: #8a6d3b;
  1503. background-color: #fcf8e3;
  1504. border-color: #8a6d3b;
  1505. }
  1506. .has-warning .form-control-feedback {
  1507. color: #8a6d3b;
  1508. }
  1509. .has-error .help-block,
  1510. .has-error .control-label,
  1511. .has-error .radio,
  1512. .has-error .checkbox,
  1513. .has-error .radio-inline,
  1514. .has-error .checkbox-inline {
  1515. color: #a94442;
  1516. }
  1517. .has-error .form-control {
  1518. border-color: #a94442;
  1519. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  1520. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  1521. }
  1522. .has-error .form-control:focus {
  1523. border-color: #843534;
  1524. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  1525. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  1526. }
  1527. .has-error .input-group-addon {
  1528. color: #a94442;
  1529. background-color: #f2dede;
  1530. border-color: #a94442;
  1531. }
  1532. .has-error .form-control-feedback {
  1533. color: #a94442;
  1534. }
  1535. /*# sourceMappingURL=bootstrap-rtl.css.map */