bootstrap-responsive.css 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092
  1. /*!
  2. * Bootstrap Responsive v2.2.2
  3. *
  4. * Copyright 2012 Twitter, Inc
  5. * Licensed under the Apache License v2.0
  6. * http://www.apache.org/licenses/LICENSE-2.0
  7. *
  8. * Designed and built with all the love in the world @twitter by @mdo and @fat.
  9. */
  10. @-ms-viewport {
  11. width: device-width;
  12. }
  13. .clearfix {
  14. *zoom: 1;
  15. }
  16. .clearfix:before,
  17. .clearfix:after {
  18. display: table;
  19. line-height: 0;
  20. content: "";
  21. }
  22. .clearfix:after {
  23. clear: both;
  24. }
  25. .hide-text {
  26. font: 0/0 a;
  27. color: transparent;
  28. text-shadow: none;
  29. background-color: transparent;
  30. border: 0;
  31. }
  32. .input-block-level {
  33. display: block;
  34. width: 100%;
  35. min-height: 30px;
  36. -webkit-box-sizing: border-box;
  37. -moz-box-sizing: border-box;
  38. box-sizing: border-box;
  39. }
  40. .hidden {
  41. display: none;
  42. visibility: hidden;
  43. }
  44. .visible-phone {
  45. display: none !important;
  46. }
  47. .visible-tablet {
  48. display: none !important;
  49. }
  50. .hidden-desktop {
  51. display: none !important;
  52. }
  53. .visible-desktop {
  54. display: inherit !important;
  55. }
  56. @media (min-width: 768px) and (max-width: 979px) {
  57. .hidden-desktop {
  58. display: inherit !important;
  59. }
  60. .visible-desktop {
  61. display: none !important ;
  62. }
  63. .visible-tablet {
  64. display: inherit !important;
  65. }
  66. .hidden-tablet {
  67. display: none !important;
  68. }
  69. }
  70. @media (max-width: 767px) {
  71. .hidden-desktop {
  72. display: inherit !important;
  73. }
  74. .visible-desktop {
  75. display: none !important;
  76. }
  77. .visible-phone {
  78. display: inherit !important;
  79. }
  80. .hidden-phone {
  81. display: none !important;
  82. }
  83. }
  84. @media (min-width: 1200px) {
  85. .row {
  86. margin-left: -30px;
  87. *zoom: 1;
  88. }
  89. .row:before,
  90. .row:after {
  91. display: table;
  92. line-height: 0;
  93. content: "";
  94. }
  95. .row:after {
  96. clear: both;
  97. }
  98. [class*="span"] {
  99. float: left;
  100. min-height: 1px;
  101. margin-left: 30px;
  102. }
  103. .container,
  104. .navbar-static-top .container,
  105. .navbar-fixed-top .container,
  106. .navbar-fixed-bottom .container {
  107. width: 1170px;
  108. }
  109. .span12 {
  110. width: 1170px;
  111. }
  112. .span11 {
  113. width: 1070px;
  114. }
  115. .span10 {
  116. width: 970px;
  117. }
  118. .span9 {
  119. width: 870px;
  120. }
  121. .span8 {
  122. width: 770px;
  123. }
  124. .span7 {
  125. width: 670px;
  126. }
  127. .span6 {
  128. width: 570px;
  129. }
  130. .span5 {
  131. width: 470px;
  132. }
  133. .span4 {
  134. width: 370px;
  135. }
  136. .span3 {
  137. width: 270px;
  138. }
  139. .span2 {
  140. width: 170px;
  141. }
  142. .span1 {
  143. width: 70px;
  144. }
  145. .offset12 {
  146. margin-left: 1230px;
  147. }
  148. .offset11 {
  149. margin-left: 1130px;
  150. }
  151. .offset10 {
  152. margin-left: 1030px;
  153. }
  154. .offset9 {
  155. margin-left: 930px;
  156. }
  157. .offset8 {
  158. margin-left: 830px;
  159. }
  160. .offset7 {
  161. margin-left: 730px;
  162. }
  163. .offset6 {
  164. margin-left: 630px;
  165. }
  166. .offset5 {
  167. margin-left: 530px;
  168. }
  169. .offset4 {
  170. margin-left: 430px;
  171. }
  172. .offset3 {
  173. margin-left: 330px;
  174. }
  175. .offset2 {
  176. margin-left: 230px;
  177. }
  178. .offset1 {
  179. margin-left: 130px;
  180. }
  181. .row-fluid {
  182. width: 100%;
  183. *zoom: 1;
  184. }
  185. .row-fluid:before,
  186. .row-fluid:after {
  187. display: table;
  188. line-height: 0;
  189. content: "";
  190. }
  191. .row-fluid:after {
  192. clear: both;
  193. }
  194. .row-fluid [class*="span"] {
  195. display: block;
  196. float: left;
  197. width: 100%;
  198. min-height: 30px;
  199. margin-left: 2.564102564102564%;
  200. *margin-left: 2.5109110747408616%;
  201. -webkit-box-sizing: border-box;
  202. -moz-box-sizing: border-box;
  203. box-sizing: border-box;
  204. }
  205. .row-fluid [class*="span"]:first-child {
  206. margin-left: 0;
  207. }
  208. .row-fluid .controls-row [class*="span"] + [class*="span"] {
  209. margin-left: 2.564102564102564%;
  210. }
  211. .row-fluid .span12 {
  212. width: 100%;
  213. *width: 99.94680851063829%;
  214. }
  215. .row-fluid .span11 {
  216. width: 91.45299145299145%;
  217. *width: 91.39979996362975%;
  218. }
  219. .row-fluid .span10 {
  220. width: 82.90598290598291%;
  221. *width: 82.8527914166212%;
  222. }
  223. .row-fluid .span9 {
  224. width: 74.35897435897436%;
  225. *width: 74.30578286961266%;
  226. }
  227. .row-fluid .span8 {
  228. width: 65.81196581196582%;
  229. *width: 65.75877432260411%;
  230. }
  231. .row-fluid .span7 {
  232. width: 57.26495726495726%;
  233. *width: 57.21176577559556%;
  234. }
  235. .row-fluid .span6 {
  236. width: 48.717948717948715%;
  237. *width: 48.664757228587014%;
  238. }
  239. .row-fluid .span5 {
  240. width: 40.17094017094017%;
  241. *width: 40.11774868157847%;
  242. }
  243. .row-fluid .span4 {
  244. width: 31.623931623931625%;
  245. *width: 31.570740134569924%;
  246. }
  247. .row-fluid .span3 {
  248. width: 23.076923076923077%;
  249. *width: 23.023731587561375%;
  250. }
  251. .row-fluid .span2 {
  252. width: 14.52991452991453%;
  253. *width: 14.476723040552828%;
  254. }
  255. .row-fluid .span1 {
  256. width: 5.982905982905983%;
  257. *width: 5.929714493544281%;
  258. }
  259. .row-fluid .offset12 {
  260. margin-left: 105.12820512820512%;
  261. *margin-left: 105.02182214948171%;
  262. }
  263. .row-fluid .offset12:first-child {
  264. margin-left: 102.56410256410257%;
  265. *margin-left: 102.45771958537915%;
  266. }
  267. .row-fluid .offset11 {
  268. margin-left: 96.58119658119658%;
  269. *margin-left: 96.47481360247316%;
  270. }
  271. .row-fluid .offset11:first-child {
  272. margin-left: 94.01709401709402%;
  273. *margin-left: 93.91071103837061%;
  274. }
  275. .row-fluid .offset10 {
  276. margin-left: 88.03418803418803%;
  277. *margin-left: 87.92780505546462%;
  278. }
  279. .row-fluid .offset10:first-child {
  280. margin-left: 85.47008547008548%;
  281. *margin-left: 85.36370249136206%;
  282. }
  283. .row-fluid .offset9 {
  284. margin-left: 79.48717948717949%;
  285. *margin-left: 79.38079650845607%;
  286. }
  287. .row-fluid .offset9:first-child {
  288. margin-left: 76.92307692307693%;
  289. *margin-left: 76.81669394435352%;
  290. }
  291. .row-fluid .offset8 {
  292. margin-left: 70.94017094017094%;
  293. *margin-left: 70.83378796144753%;
  294. }
  295. .row-fluid .offset8:first-child {
  296. margin-left: 68.37606837606839%;
  297. *margin-left: 68.26968539734497%;
  298. }
  299. .row-fluid .offset7 {
  300. margin-left: 62.393162393162385%;
  301. *margin-left: 62.28677941443899%;
  302. }
  303. .row-fluid .offset7:first-child {
  304. margin-left: 59.82905982905982%;
  305. *margin-left: 59.72267685033642%;
  306. }
  307. .row-fluid .offset6 {
  308. margin-left: 53.84615384615384%;
  309. *margin-left: 53.739770867430444%;
  310. }
  311. .row-fluid .offset6:first-child {
  312. margin-left: 51.28205128205128%;
  313. *margin-left: 51.175668303327875%;
  314. }
  315. .row-fluid .offset5 {
  316. margin-left: 45.299145299145295%;
  317. *margin-left: 45.1927623204219%;
  318. }
  319. .row-fluid .offset5:first-child {
  320. margin-left: 42.73504273504273%;
  321. *margin-left: 42.62865975631933%;
  322. }
  323. .row-fluid .offset4 {
  324. margin-left: 36.75213675213675%;
  325. *margin-left: 36.645753773413354%;
  326. }
  327. .row-fluid .offset4:first-child {
  328. margin-left: 34.18803418803419%;
  329. *margin-left: 34.081651209310785%;
  330. }
  331. .row-fluid .offset3 {
  332. margin-left: 28.205128205128204%;
  333. *margin-left: 28.0987452264048%;
  334. }
  335. .row-fluid .offset3:first-child {
  336. margin-left: 25.641025641025642%;
  337. *margin-left: 25.53464266230224%;
  338. }
  339. .row-fluid .offset2 {
  340. margin-left: 19.65811965811966%;
  341. *margin-left: 19.551736679396257%;
  342. }
  343. .row-fluid .offset2:first-child {
  344. margin-left: 17.094017094017094%;
  345. *margin-left: 16.98763411529369%;
  346. }
  347. .row-fluid .offset1 {
  348. margin-left: 11.11111111111111%;
  349. *margin-left: 11.004728132387708%;
  350. }
  351. .row-fluid .offset1:first-child {
  352. margin-left: 8.547008547008547%;
  353. *margin-left: 8.440625568285142%;
  354. }
  355. input,
  356. textarea,
  357. .uneditable-input {
  358. margin-left: 0;
  359. }
  360. .controls-row [class*="span"] + [class*="span"] {
  361. margin-left: 30px;
  362. }
  363. input.span12,
  364. textarea.span12,
  365. .uneditable-input.span12 {
  366. width: 1156px;
  367. }
  368. input.span11,
  369. textarea.span11,
  370. .uneditable-input.span11 {
  371. width: 1056px;
  372. }
  373. input.span10,
  374. textarea.span10,
  375. .uneditable-input.span10 {
  376. width: 956px;
  377. }
  378. input.span9,
  379. textarea.span9,
  380. .uneditable-input.span9 {
  381. width: 856px;
  382. }
  383. input.span8,
  384. textarea.span8,
  385. .uneditable-input.span8 {
  386. width: 756px;
  387. }
  388. input.span7,
  389. textarea.span7,
  390. .uneditable-input.span7 {
  391. width: 656px;
  392. }
  393. input.span6,
  394. textarea.span6,
  395. .uneditable-input.span6 {
  396. width: 556px;
  397. }
  398. input.span5,
  399. textarea.span5,
  400. .uneditable-input.span5 {
  401. width: 456px;
  402. }
  403. input.span4,
  404. textarea.span4,
  405. .uneditable-input.span4 {
  406. width: 356px;
  407. }
  408. input.span3,
  409. textarea.span3,
  410. .uneditable-input.span3 {
  411. width: 256px;
  412. }
  413. input.span2,
  414. textarea.span2,
  415. .uneditable-input.span2 {
  416. width: 156px;
  417. }
  418. input.span1,
  419. textarea.span1,
  420. .uneditable-input.span1 {
  421. width: 56px;
  422. }
  423. .thumbnails {
  424. margin-left: -30px;
  425. }
  426. .thumbnails > li {
  427. margin-left: 30px;
  428. }
  429. .row-fluid .thumbnails {
  430. margin-left: 0;
  431. }
  432. }
  433. @media (min-width: 768px) and (max-width: 979px) {
  434. .row {
  435. margin-left: -20px;
  436. *zoom: 1;
  437. }
  438. .row:before,
  439. .row:after {
  440. display: table;
  441. line-height: 0;
  442. content: "";
  443. }
  444. .row:after {
  445. clear: both;
  446. }
  447. [class*="span"] {
  448. float: left;
  449. min-height: 1px;
  450. margin-left: 20px;
  451. }
  452. .container,
  453. .navbar-static-top .container,
  454. .navbar-fixed-top .container,
  455. .navbar-fixed-bottom .container {
  456. width: 724px;
  457. }
  458. .span12 {
  459. width: 724px;
  460. }
  461. .span11 {
  462. width: 662px;
  463. }
  464. .span10 {
  465. width: 600px;
  466. }
  467. .span9 {
  468. width: 538px;
  469. }
  470. .span8 {
  471. width: 476px;
  472. }
  473. .span7 {
  474. width: 414px;
  475. }
  476. .span6 {
  477. width: 352px;
  478. }
  479. .span5 {
  480. width: 290px;
  481. }
  482. .span4 {
  483. width: 228px;
  484. }
  485. .span3 {
  486. width: 166px;
  487. }
  488. .span2 {
  489. width: 104px;
  490. }
  491. .span1 {
  492. width: 42px;
  493. }
  494. .offset12 {
  495. margin-left: 764px;
  496. }
  497. .offset11 {
  498. margin-left: 702px;
  499. }
  500. .offset10 {
  501. margin-left: 640px;
  502. }
  503. .offset9 {
  504. margin-left: 578px;
  505. }
  506. .offset8 {
  507. margin-left: 516px;
  508. }
  509. .offset7 {
  510. margin-left: 454px;
  511. }
  512. .offset6 {
  513. margin-left: 392px;
  514. }
  515. .offset5 {
  516. margin-left: 330px;
  517. }
  518. .offset4 {
  519. margin-left: 268px;
  520. }
  521. .offset3 {
  522. margin-left: 206px;
  523. }
  524. .offset2 {
  525. margin-left: 144px;
  526. }
  527. .offset1 {
  528. margin-left: 82px;
  529. }
  530. .row-fluid {
  531. width: 100%;
  532. *zoom: 1;
  533. }
  534. .row-fluid:before,
  535. .row-fluid:after {
  536. display: table;
  537. line-height: 0;
  538. content: "";
  539. }
  540. .row-fluid:after {
  541. clear: both;
  542. }
  543. .row-fluid [class*="span"] {
  544. display: block;
  545. float: left;
  546. width: 100%;
  547. min-height: 30px;
  548. margin-left: 2.7624309392265194%;
  549. *margin-left: 2.709239449864817%;
  550. -webkit-box-sizing: border-box;
  551. -moz-box-sizing: border-box;
  552. box-sizing: border-box;
  553. }
  554. .row-fluid [class*="span"]:first-child {
  555. margin-left: 0;
  556. }
  557. .row-fluid .controls-row [class*="span"] + [class*="span"] {
  558. margin-left: 2.7624309392265194%;
  559. }
  560. .row-fluid .span12 {
  561. width: 100%;
  562. *width: 99.94680851063829%;
  563. }
  564. .row-fluid .span11 {
  565. width: 91.43646408839778%;
  566. *width: 91.38327259903608%;
  567. }
  568. .row-fluid .span10 {
  569. width: 82.87292817679558%;
  570. *width: 82.81973668743387%;
  571. }
  572. .row-fluid .span9 {
  573. width: 74.30939226519337%;
  574. *width: 74.25620077583166%;
  575. }
  576. .row-fluid .span8 {
  577. width: 65.74585635359117%;
  578. *width: 65.69266486422946%;
  579. }
  580. .row-fluid .span7 {
  581. width: 57.18232044198895%;
  582. *width: 57.12912895262725%;
  583. }
  584. .row-fluid .span6 {
  585. width: 48.61878453038674%;
  586. *width: 48.56559304102504%;
  587. }
  588. .row-fluid .span5 {
  589. width: 40.05524861878453%;
  590. *width: 40.00205712942283%;
  591. }
  592. .row-fluid .span4 {
  593. width: 31.491712707182323%;
  594. *width: 31.43852121782062%;
  595. }
  596. .row-fluid .span3 {
  597. width: 22.92817679558011%;
  598. *width: 22.87498530621841%;
  599. }
  600. .row-fluid .span2 {
  601. width: 14.3646408839779%;
  602. *width: 14.311449394616199%;
  603. }
  604. .row-fluid .span1 {
  605. width: 5.801104972375691%;
  606. *width: 5.747913483013988%;
  607. }
  608. .row-fluid .offset12 {
  609. margin-left: 105.52486187845304%;
  610. *margin-left: 105.41847889972962%;
  611. }
  612. .row-fluid .offset12:first-child {
  613. margin-left: 102.76243093922652%;
  614. *margin-left: 102.6560479605031%;
  615. }
  616. .row-fluid .offset11 {
  617. margin-left: 96.96132596685082%;
  618. *margin-left: 96.8549429881274%;
  619. }
  620. .row-fluid .offset11:first-child {
  621. margin-left: 94.1988950276243%;
  622. *margin-left: 94.09251204890089%;
  623. }
  624. .row-fluid .offset10 {
  625. margin-left: 88.39779005524862%;
  626. *margin-left: 88.2914070765252%;
  627. }
  628. .row-fluid .offset10:first-child {
  629. margin-left: 85.6353591160221%;
  630. *margin-left: 85.52897613729868%;
  631. }
  632. .row-fluid .offset9 {
  633. margin-left: 79.8342541436464%;
  634. *margin-left: 79.72787116492299%;
  635. }
  636. .row-fluid .offset9:first-child {
  637. margin-left: 77.07182320441989%;
  638. *margin-left: 76.96544022569647%;
  639. }
  640. .row-fluid .offset8 {
  641. margin-left: 71.2707182320442%;
  642. *margin-left: 71.16433525332079%;
  643. }
  644. .row-fluid .offset8:first-child {
  645. margin-left: 68.50828729281768%;
  646. *margin-left: 68.40190431409427%;
  647. }
  648. .row-fluid .offset7 {
  649. margin-left: 62.70718232044199%;
  650. *margin-left: 62.600799341718584%;
  651. }
  652. .row-fluid .offset7:first-child {
  653. margin-left: 59.94475138121547%;
  654. *margin-left: 59.838368402492065%;
  655. }
  656. .row-fluid .offset6 {
  657. margin-left: 54.14364640883978%;
  658. *margin-left: 54.037263430116376%;
  659. }
  660. .row-fluid .offset6:first-child {
  661. margin-left: 51.38121546961326%;
  662. *margin-left: 51.27483249088986%;
  663. }
  664. .row-fluid .offset5 {
  665. margin-left: 45.58011049723757%;
  666. *margin-left: 45.47372751851417%;
  667. }
  668. .row-fluid .offset5:first-child {
  669. margin-left: 42.81767955801105%;
  670. *margin-left: 42.71129657928765%;
  671. }
  672. .row-fluid .offset4 {
  673. margin-left: 37.01657458563536%;
  674. *margin-left: 36.91019160691196%;
  675. }
  676. .row-fluid .offset4:first-child {
  677. margin-left: 34.25414364640884%;
  678. *margin-left: 34.14776066768544%;
  679. }
  680. .row-fluid .offset3 {
  681. margin-left: 28.45303867403315%;
  682. *margin-left: 28.346655695309746%;
  683. }
  684. .row-fluid .offset3:first-child {
  685. margin-left: 25.69060773480663%;
  686. *margin-left: 25.584224756083227%;
  687. }
  688. .row-fluid .offset2 {
  689. margin-left: 19.88950276243094%;
  690. *margin-left: 19.783119783707537%;
  691. }
  692. .row-fluid .offset2:first-child {
  693. margin-left: 17.12707182320442%;
  694. *margin-left: 17.02068884448102%;
  695. }
  696. .row-fluid .offset1 {
  697. margin-left: 11.32596685082873%;
  698. *margin-left: 11.219583872105325%;
  699. }
  700. .row-fluid .offset1:first-child {
  701. margin-left: 8.56353591160221%;
  702. *margin-left: 8.457152932878806%;
  703. }
  704. input,
  705. textarea,
  706. .uneditable-input {
  707. margin-left: 0;
  708. }
  709. .controls-row [class*="span"] + [class*="span"] {
  710. margin-left: 20px;
  711. }
  712. input.span12,
  713. textarea.span12,
  714. .uneditable-input.span12 {
  715. width: 710px;
  716. }
  717. input.span11,
  718. textarea.span11,
  719. .uneditable-input.span11 {
  720. width: 648px;
  721. }
  722. input.span10,
  723. textarea.span10,
  724. .uneditable-input.span10 {
  725. width: 586px;
  726. }
  727. input.span9,
  728. textarea.span9,
  729. .uneditable-input.span9 {
  730. width: 524px;
  731. }
  732. input.span8,
  733. textarea.span8,
  734. .uneditable-input.span8 {
  735. width: 462px;
  736. }
  737. input.span7,
  738. textarea.span7,
  739. .uneditable-input.span7 {
  740. width: 400px;
  741. }
  742. input.span6,
  743. textarea.span6,
  744. .uneditable-input.span6 {
  745. width: 338px;
  746. }
  747. input.span5,
  748. textarea.span5,
  749. .uneditable-input.span5 {
  750. width: 276px;
  751. }
  752. input.span4,
  753. textarea.span4,
  754. .uneditable-input.span4 {
  755. width: 214px;
  756. }
  757. input.span3,
  758. textarea.span3,
  759. .uneditable-input.span3 {
  760. width: 152px;
  761. }
  762. input.span2,
  763. textarea.span2,
  764. .uneditable-input.span2 {
  765. width: 90px;
  766. }
  767. input.span1,
  768. textarea.span1,
  769. .uneditable-input.span1 {
  770. width: 28px;
  771. }
  772. }
  773. @media (max-width: 767px) {
  774. body {
  775. padding-right: 20px;
  776. padding-left: 20px;
  777. }
  778. .navbar-fixed-top,
  779. .navbar-fixed-bottom,
  780. .navbar-static-top {
  781. margin-right: -20px;
  782. margin-left: -20px;
  783. }
  784. .container-fluid {
  785. padding: 0;
  786. }
  787. .dl-horizontal dt {
  788. float: none;
  789. width: auto;
  790. clear: none;
  791. text-align: left;
  792. }
  793. .dl-horizontal dd {
  794. margin-left: 0;
  795. }
  796. .container {
  797. width: auto;
  798. }
  799. .row-fluid {
  800. width: 100%;
  801. }
  802. .row,
  803. .thumbnails {
  804. margin-left: 0;
  805. }
  806. .thumbnails > li {
  807. float: none;
  808. margin-left: 0;
  809. }
  810. [class*="span"],
  811. .uneditable-input[class*="span"],
  812. .row-fluid [class*="span"] {
  813. display: block;
  814. float: none;
  815. width: 100%;
  816. margin-left: 0;
  817. -webkit-box-sizing: border-box;
  818. -moz-box-sizing: border-box;
  819. box-sizing: border-box;
  820. }
  821. .span12,
  822. .row-fluid .span12 {
  823. width: 100%;
  824. -webkit-box-sizing: border-box;
  825. -moz-box-sizing: border-box;
  826. box-sizing: border-box;
  827. }
  828. .row-fluid [class*="offset"]:first-child {
  829. margin-left: 0;
  830. }
  831. .input-large,
  832. .input-xlarge,
  833. .input-xxlarge,
  834. input[class*="span"],
  835. select[class*="span"],
  836. textarea[class*="span"],
  837. .uneditable-input {
  838. display: block;
  839. width: 100%;
  840. min-height: 30px;
  841. -webkit-box-sizing: border-box;
  842. -moz-box-sizing: border-box;
  843. box-sizing: border-box;
  844. }
  845. .input-prepend input,
  846. .input-append input,
  847. .input-prepend input[class*="span"],
  848. .input-append input[class*="span"] {
  849. display: inline-block;
  850. width: auto;
  851. }
  852. .controls-row [class*="span"] + [class*="span"] {
  853. margin-left: 0;
  854. }
  855. .modal {
  856. position: fixed;
  857. top: 20px;
  858. right: 20px;
  859. left: 20px;
  860. width: auto;
  861. margin: 0;
  862. }
  863. .modal.fade {
  864. top: -100px;
  865. }
  866. .modal.fade.in {
  867. top: 20px;
  868. }
  869. }
  870. @media (max-width: 480px) {
  871. .nav-collapse {
  872. -webkit-transform: translate3d(0, 0, 0);
  873. }
  874. .page-header h1 small {
  875. display: block;
  876. line-height: 20px;
  877. }
  878. input[type="checkbox"],
  879. input[type="radio"] {
  880. border: 1px solid #ccc;
  881. }
  882. .form-horizontal .control-label {
  883. float: none;
  884. width: auto;
  885. padding-top: 0;
  886. text-align: left;
  887. }
  888. .form-horizontal .controls {
  889. margin-left: 0;
  890. }
  891. .form-horizontal .control-list {
  892. padding-top: 0;
  893. }
  894. .form-horizontal .form-actions {
  895. padding-right: 10px;
  896. padding-left: 10px;
  897. }
  898. .media .pull-left,
  899. .media .pull-right {
  900. display: block;
  901. float: none;
  902. margin-bottom: 10px;
  903. }
  904. .media-object {
  905. margin-right: 0;
  906. margin-left: 0;
  907. }
  908. .modal {
  909. top: 10px;
  910. right: 10px;
  911. left: 10px;
  912. }
  913. .modal-header .close {
  914. padding: 10px;
  915. margin: -10px;
  916. }
  917. .carousel-caption {
  918. position: static;
  919. }
  920. }
  921. @media (max-width: 979px) {
  922. body {
  923. padding-top: 0;
  924. }
  925. .navbar-fixed-top,
  926. .navbar-fixed-bottom {
  927. position: static;
  928. }
  929. .navbar-fixed-top {
  930. margin-bottom: 20px;
  931. }
  932. .navbar-fixed-bottom {
  933. margin-top: 20px;
  934. }
  935. .navbar-fixed-top .navbar-inner,
  936. .navbar-fixed-bottom .navbar-inner {
  937. padding: 5px;
  938. }
  939. .navbar .container {
  940. width: auto;
  941. padding: 0;
  942. }
  943. .navbar .brand {
  944. padding-right: 10px;
  945. padding-left: 10px;
  946. margin: 0 0 0 -5px;
  947. }
  948. .nav-collapse {
  949. clear: both;
  950. }
  951. .nav-collapse .nav {
  952. float: none;
  953. margin: 0 0 10px;
  954. }
  955. .nav-collapse .nav > li {
  956. float: none;
  957. }
  958. .nav-collapse .nav > li > a {
  959. margin-bottom: 2px;
  960. }
  961. .nav-collapse .nav > .divider-vertical {
  962. display: none;
  963. }
  964. .nav-collapse .nav .nav-header {
  965. color: #777777;
  966. text-shadow: none;
  967. }
  968. .nav-collapse .nav > li > a,
  969. .nav-collapse .dropdown-menu a {
  970. padding: 9px 15px;
  971. font-weight: bold;
  972. color: #777777;
  973. -webkit-border-radius: 3px;
  974. -moz-border-radius: 3px;
  975. border-radius: 3px;
  976. }
  977. .nav-collapse .btn {
  978. padding: 4px 10px 4px;
  979. font-weight: normal;
  980. -webkit-border-radius: 4px;
  981. -moz-border-radius: 4px;
  982. border-radius: 4px;
  983. }
  984. .nav-collapse .dropdown-menu li + li a {
  985. margin-bottom: 2px;
  986. }
  987. .nav-collapse .nav > li > a:hover,
  988. .nav-collapse .dropdown-menu a:hover {
  989. background-color: #f2f2f2;
  990. }
  991. .navbar-inverse .nav-collapse .nav > li > a,
  992. .navbar-inverse .nav-collapse .dropdown-menu a {
  993. color: #999999;
  994. }
  995. .navbar-inverse .nav-collapse .nav > li > a:hover,
  996. .navbar-inverse .nav-collapse .dropdown-menu a:hover {
  997. background-color: #111111;
  998. }
  999. .nav-collapse.in .btn-group {
  1000. padding: 0;
  1001. margin-top: 5px;
  1002. }
  1003. .nav-collapse .dropdown-menu {
  1004. position: static;
  1005. top: auto;
  1006. left: auto;
  1007. display: none;
  1008. float: none;
  1009. max-width: none;
  1010. padding: 0;
  1011. margin: 0 15px;
  1012. background-color: transparent;
  1013. border: none;
  1014. -webkit-border-radius: 0;
  1015. -moz-border-radius: 0;
  1016. border-radius: 0;
  1017. -webkit-box-shadow: none;
  1018. -moz-box-shadow: none;
  1019. box-shadow: none;
  1020. }
  1021. .nav-collapse .open > .dropdown-menu {
  1022. display: block;
  1023. }
  1024. .nav-collapse .dropdown-menu:before,
  1025. .nav-collapse .dropdown-menu:after {
  1026. display: none;
  1027. }
  1028. .nav-collapse .dropdown-menu .divider {
  1029. display: none;
  1030. }
  1031. .nav-collapse .nav > li > .dropdown-menu:before,
  1032. .nav-collapse .nav > li > .dropdown-menu:after {
  1033. display: none;
  1034. }
  1035. .nav-collapse .navbar-form,
  1036. .nav-collapse .navbar-search {
  1037. float: none;
  1038. padding: 10px 15px;
  1039. margin: 10px 0;
  1040. border-top: 1px solid #f2f2f2;
  1041. border-bottom: 1px solid #f2f2f2;
  1042. -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  1043. -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  1044. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  1045. }
  1046. .navbar-inverse .nav-collapse .navbar-form,
  1047. .navbar-inverse .nav-collapse .navbar-search {
  1048. border-top-color: #111111;
  1049. border-bottom-color: #111111;
  1050. }
  1051. .navbar .nav-collapse .nav.pull-right {
  1052. float: none;
  1053. margin-left: 0;
  1054. }
  1055. .nav-collapse,
  1056. .nav-collapse.collapse {
  1057. height: 0;
  1058. overflow: hidden;
  1059. }
  1060. .navbar .btn-navbar {
  1061. display: block;
  1062. }
  1063. .navbar-static .navbar-inner {
  1064. padding-right: 10px;
  1065. padding-left: 10px;
  1066. }
  1067. }
  1068. @media (min-width: 980px) {
  1069. .nav-collapse.collapse {
  1070. height: auto !important;
  1071. overflow: visible !important;
  1072. }
  1073. }