bootplus-responsive.css 22 KB

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