ratchet.css 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434
  1. /*!
  2. * =====================================================
  3. * Ratchet v2.0.2 (http://goratchet.com)
  4. * Copyright 2014 Connor Sears
  5. * Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)
  6. *
  7. * v2.0.2 designed by @connors.
  8. * =====================================================
  9. */
  10. /*! normalize.css v3.0.1 | MIT License | git.io/normalize */
  11. html {
  12. font-family: sans-serif;
  13. -webkit-text-size-adjust: 100%;
  14. -ms-text-size-adjust: 100%;
  15. }
  16. body {
  17. margin: 0;
  18. }
  19. article,
  20. aside,
  21. details,
  22. figcaption,
  23. figure,
  24. footer,
  25. header,
  26. hgroup,
  27. main,
  28. nav,
  29. section,
  30. summary {
  31. display: block;
  32. }
  33. audio,
  34. canvas,
  35. progress,
  36. video {
  37. display: inline-block;
  38. vertical-align: baseline;
  39. }
  40. audio:not([controls]) {
  41. display: none;
  42. height: 0;
  43. }
  44. [hidden],
  45. template {
  46. display: none;
  47. }
  48. a {
  49. background: transparent;
  50. }
  51. a:active,
  52. a:hover {
  53. outline: 0;
  54. }
  55. abbr[title] {
  56. border-bottom: 1px dotted;
  57. }
  58. b,
  59. strong {
  60. font-weight: bold;
  61. }
  62. dfn {
  63. font-style: italic;
  64. }
  65. h1 {
  66. margin: .67em 0;
  67. font-size: 2em;
  68. }
  69. mark {
  70. color: #000;
  71. background: #ff0;
  72. }
  73. small {
  74. font-size: 80%;
  75. }
  76. sub,
  77. sup {
  78. position: relative;
  79. font-size: 75%;
  80. line-height: 0;
  81. vertical-align: baseline;
  82. }
  83. sup {
  84. top: -.5em;
  85. }
  86. sub {
  87. bottom: -.25em;
  88. }
  89. img {
  90. border: 0;
  91. }
  92. svg:not(:root) {
  93. overflow: hidden;
  94. }
  95. figure {
  96. margin: 1em 40px;
  97. }
  98. hr {
  99. height: 0;
  100. -moz-box-sizing: content-box;
  101. box-sizing: content-box;
  102. }
  103. pre {
  104. overflow: auto;
  105. }
  106. code,
  107. kbd,
  108. pre,
  109. samp {
  110. font-family: monospace, monospace;
  111. font-size: 1em;
  112. }
  113. button,
  114. input,
  115. optgroup,
  116. select,
  117. textarea {
  118. margin: 0;
  119. font: inherit;
  120. color: inherit;
  121. }
  122. button {
  123. overflow: visible;
  124. }
  125. button,
  126. select {
  127. text-transform: none;
  128. }
  129. button,
  130. html input[type="button"],
  131. input[type="reset"],
  132. input[type="submit"] {
  133. -webkit-appearance: button;
  134. cursor: pointer;
  135. }
  136. button[disabled],
  137. html input[disabled] {
  138. cursor: default;
  139. }
  140. button::-moz-focus-inner,
  141. input::-moz-focus-inner {
  142. padding: 0;
  143. border: 0;
  144. }
  145. input {
  146. line-height: normal;
  147. }
  148. input[type="checkbox"],
  149. input[type="radio"] {
  150. box-sizing: border-box;
  151. padding: 0;
  152. }
  153. input[type="number"]::-webkit-inner-spin-button,
  154. input[type="number"]::-webkit-outer-spin-button {
  155. height: auto;
  156. }
  157. input[type="search"] {
  158. -webkit-box-sizing: content-box;
  159. -moz-box-sizing: content-box;
  160. box-sizing: content-box;
  161. -webkit-appearance: textfield;
  162. }
  163. input[type="search"]::-webkit-search-cancel-button,
  164. input[type="search"]::-webkit-search-decoration {
  165. -webkit-appearance: none;
  166. }
  167. fieldset {
  168. padding: .35em .625em .75em;
  169. margin: 0 2px;
  170. border: 1px solid #c0c0c0;
  171. }
  172. legend {
  173. padding: 0;
  174. border: 0;
  175. }
  176. textarea {
  177. overflow: auto;
  178. }
  179. optgroup {
  180. font-weight: bold;
  181. }
  182. table {
  183. border-spacing: 0;
  184. border-collapse: collapse;
  185. }
  186. td,
  187. th {
  188. padding: 0;
  189. }
  190. * {
  191. -webkit-box-sizing: border-box;
  192. -moz-box-sizing: border-box;
  193. box-sizing: border-box;
  194. }
  195. body {
  196. position: fixed;
  197. top: 0;
  198. right: 0;
  199. bottom: 0;
  200. left: 0;
  201. font-family: "Helvetica Neue", Helvetica, sans-serif;
  202. font-size: 17px;
  203. line-height: 21px;
  204. color: #000;
  205. background-color: #fff;
  206. }
  207. a {
  208. color: #428bca;
  209. text-decoration: none;
  210. -webkit-tap-highlight-color: transparent;
  211. }
  212. a:active {
  213. color: #3071a9;
  214. }
  215. .content {
  216. position: absolute;
  217. top: 0;
  218. right: 0;
  219. bottom: 0;
  220. left: 0;
  221. overflow: auto;
  222. -webkit-overflow-scrolling: touch;
  223. background-color: #fff;
  224. }
  225. .content > * {
  226. -webkit-transform: translateZ(0);
  227. -ms-transform: translateZ(0);
  228. transform: translateZ(0);
  229. }
  230. .bar-nav ~ .content {
  231. padding-top: 44px;
  232. }
  233. .bar-header-secondary ~ .content {
  234. padding-top: 88px;
  235. }
  236. .bar-footer ~ .content {
  237. padding-bottom: 44px;
  238. }
  239. .bar-footer-secondary ~ .content {
  240. padding-bottom: 88px;
  241. }
  242. .bar-tab ~ .content {
  243. padding-bottom: 50px;
  244. }
  245. .bar-footer-secondary-tab ~ .content {
  246. padding-bottom: 94px;
  247. }
  248. .content-padded {
  249. margin: 10px;
  250. }
  251. .pull-left {
  252. float: left;
  253. }
  254. .pull-right {
  255. float: right;
  256. }
  257. .clearfix:before, .clearfix:after {
  258. display: table;
  259. content: " ";
  260. }
  261. .clearfix:after {
  262. clear: both;
  263. }
  264. h1, h2, h3, h4, h5, h6 {
  265. margin-top: 0;
  266. margin-bottom: 10px;
  267. line-height: 1;
  268. }
  269. h1, .h1 {
  270. font-size: 36px;
  271. }
  272. h2, .h2 {
  273. font-size: 30px;
  274. }
  275. h3, .h3 {
  276. font-size: 24px;
  277. }
  278. h4, .h4 {
  279. font-size: 18px;
  280. }
  281. h5, .h5 {
  282. margin-top: 20px;
  283. font-size: 14px;
  284. }
  285. h6, .h6 {
  286. margin-top: 20px;
  287. font-size: 12px;
  288. }
  289. p {
  290. margin-top: 0;
  291. margin-bottom: 10px;
  292. font-size: 14px;
  293. color: #777;
  294. }
  295. .btn {
  296. position: relative;
  297. display: inline-block;
  298. padding: 6px 8px 7px;
  299. margin-bottom: 0;
  300. font-size: 12px;
  301. font-weight: 400;
  302. line-height: 1;
  303. color: #333;
  304. text-align: center;
  305. white-space: nowrap;
  306. vertical-align: top;
  307. cursor: pointer;
  308. background-color: white;
  309. border: 1px solid #ccc;
  310. border-radius: 3px;
  311. }
  312. .btn:active, .btn.active {
  313. color: inherit;
  314. background-color: #ccc;
  315. }
  316. .btn:disabled, .btn.disabled {
  317. opacity: .6;
  318. }
  319. .btn-primary {
  320. color: #fff;
  321. background-color: #428bca;
  322. border: 1px solid #428bca;
  323. }
  324. .btn-primary:active, .btn-primary.active {
  325. color: #fff;
  326. background-color: #3071a9;
  327. border: 1px solid #3071a9;
  328. }
  329. .btn-positive {
  330. color: #fff;
  331. background-color: #5cb85c;
  332. border: 1px solid #5cb85c;
  333. }
  334. .btn-positive:active, .btn-positive.active {
  335. color: #fff;
  336. background-color: #449d44;
  337. border: 1px solid #449d44;
  338. }
  339. .btn-negative {
  340. color: #fff;
  341. background-color: #d9534f;
  342. border: 1px solid #d9534f;
  343. }
  344. .btn-negative:active, .btn-negative.active {
  345. color: #fff;
  346. background-color: #c9302c;
  347. border: 1px solid #c9302c;
  348. }
  349. .btn-outlined {
  350. background-color: transparent;
  351. }
  352. .btn-outlined.btn-primary {
  353. color: #428bca;
  354. }
  355. .btn-outlined.btn-positive {
  356. color: #5cb85c;
  357. }
  358. .btn-outlined.btn-negative {
  359. color: #d9534f;
  360. }
  361. .btn-outlined.btn-primary:active, .btn-outlined.btn-positive:active, .btn-outlined.btn-negative:active {
  362. color: #fff;
  363. }
  364. .btn-link {
  365. padding-top: 6px;
  366. padding-bottom: 6px;
  367. color: #428bca;
  368. background-color: transparent;
  369. border: 0;
  370. }
  371. .btn-link:active, .btn-link.active {
  372. color: #3071a9;
  373. background-color: transparent;
  374. }
  375. .btn-block {
  376. display: block;
  377. width: 100%;
  378. padding: 15px 0;
  379. margin-bottom: 10px;
  380. font-size: 18px;
  381. }
  382. input[type="submit"],
  383. input[type="reset"],
  384. input[type="button"] {
  385. width: 100%;
  386. }
  387. .btn .badge {
  388. margin: -2px -4px -2px 4px;
  389. font-size: 12px;
  390. background-color: rgba(0, 0, 0, .15);
  391. }
  392. .btn .badge-inverted,
  393. .btn:active .badge-inverted {
  394. background-color: transparent;
  395. }
  396. .btn-primary:active .badge-inverted,
  397. .btn-positive:active .badge-inverted,
  398. .btn-negative:active .badge-inverted {
  399. color: #fff;
  400. }
  401. .btn-block .badge {
  402. position: absolute;
  403. right: 0;
  404. margin-right: 10px;
  405. }
  406. .btn .icon {
  407. font-size: inherit;
  408. }
  409. .bar {
  410. position: fixed;
  411. right: 0;
  412. left: 0;
  413. z-index: 10;
  414. height: 44px;
  415. padding-right: 10px;
  416. padding-left: 10px;
  417. background-color: white;
  418. border-bottom: 1px solid #ddd;
  419. -webkit-backface-visibility: hidden;
  420. backface-visibility: hidden;
  421. }
  422. .bar-header-secondary {
  423. top: 44px;
  424. }
  425. .bar-footer {
  426. bottom: 0;
  427. }
  428. .bar-footer-secondary {
  429. bottom: 44px;
  430. }
  431. .bar-footer-secondary-tab {
  432. bottom: 50px;
  433. }
  434. .bar-footer,
  435. .bar-footer-secondary,
  436. .bar-footer-secondary-tab {
  437. border-top: 1px solid #ddd;
  438. border-bottom: 0;
  439. }
  440. .bar-nav {
  441. top: 0;
  442. }
  443. .title {
  444. position: absolute;
  445. display: block;
  446. width: 100%;
  447. padding: 0;
  448. margin: 0 -10px;
  449. font-size: 17px;
  450. font-weight: 500;
  451. line-height: 44px;
  452. color: #000;
  453. text-align: center;
  454. white-space: nowrap;
  455. }
  456. .title a {
  457. color: inherit;
  458. }
  459. .bar-tab {
  460. bottom: 0;
  461. display: table;
  462. width: 100%;
  463. height: 50px;
  464. padding: 0;
  465. table-layout: fixed;
  466. border-top: 1px solid #ddd;
  467. border-bottom: 0;
  468. }
  469. .bar-tab .tab-item {
  470. display: table-cell;
  471. width: 1%;
  472. height: 50px;
  473. color: #929292;
  474. text-align: center;
  475. vertical-align: middle;
  476. }
  477. .bar-tab .tab-item.active, .bar-tab .tab-item:active {
  478. color: #428bca;
  479. }
  480. .bar-tab .tab-item .icon {
  481. top: 3px;
  482. width: 24px;
  483. height: 24px;
  484. padding-top: 0;
  485. padding-bottom: 0;
  486. }
  487. .bar-tab .tab-item .icon ~ .tab-label {
  488. display: block;
  489. font-size: 11px;
  490. }
  491. .bar .btn {
  492. position: relative;
  493. top: 7px;
  494. z-index: 20;
  495. padding: 6px 12px 7px;
  496. margin-top: 0;
  497. font-weight: 400;
  498. }
  499. .bar .btn.pull-right {
  500. margin-left: 10px;
  501. }
  502. .bar .btn.pull-left {
  503. margin-right: 10px;
  504. }
  505. .bar .btn-link {
  506. top: 0;
  507. padding: 0;
  508. font-size: 16px;
  509. line-height: 44px;
  510. color: #428bca;
  511. border: 0;
  512. }
  513. .bar .btn-link:active, .bar .btn-link.active {
  514. color: #3071a9;
  515. }
  516. .bar .btn-block {
  517. top: 6px;
  518. padding: 7px 0;
  519. margin-bottom: 0;
  520. font-size: 16px;
  521. }
  522. .bar .btn-nav.pull-left {
  523. margin-left: -5px;
  524. }
  525. .bar .btn-nav.pull-left .icon-left-nav {
  526. margin-right: -3px;
  527. }
  528. .bar .btn-nav.pull-right {
  529. margin-right: -5px;
  530. }
  531. .bar .btn-nav.pull-right .icon-right-nav {
  532. margin-left: -3px;
  533. }
  534. .bar .icon {
  535. position: relative;
  536. z-index: 20;
  537. padding-top: 10px;
  538. padding-bottom: 10px;
  539. font-size: 24px;
  540. }
  541. .bar .btn .icon {
  542. top: 3px;
  543. padding: 0;
  544. }
  545. .bar .title .icon {
  546. padding: 0;
  547. }
  548. .bar .title .icon.icon-caret {
  549. top: 4px;
  550. margin-left: -5px;
  551. }
  552. .bar input[type="search"] {
  553. height: 29px;
  554. margin: 6px 0;
  555. }
  556. .bar .segmented-control {
  557. top: 7px;
  558. margin: 0 auto;
  559. }
  560. .badge {
  561. display: inline-block;
  562. padding: 2px 9px 3px;
  563. font-size: 12px;
  564. line-height: 1;
  565. color: #333;
  566. background-color: rgba(0, 0, 0, .15);
  567. border-radius: 100px;
  568. }
  569. .badge.badge-inverted {
  570. padding: 0 5px 0 0;
  571. background-color: transparent;
  572. }
  573. .badge-primary {
  574. color: #fff;
  575. background-color: #428bca;
  576. }
  577. .badge-primary.badge-inverted {
  578. color: #428bca;
  579. }
  580. .badge-positive {
  581. color: #fff;
  582. background-color: #5cb85c;
  583. }
  584. .badge-positive.badge-inverted {
  585. color: #5cb85c;
  586. }
  587. .badge-negative {
  588. color: #fff;
  589. background-color: #d9534f;
  590. }
  591. .badge-negative.badge-inverted {
  592. color: #d9534f;
  593. }
  594. .card {
  595. margin: 10px;
  596. overflow: hidden;
  597. background-color: white;
  598. border: 1px solid #ddd;
  599. border-radius: 6px;
  600. }
  601. .card .table-view {
  602. margin-bottom: 0;
  603. border-top: 0;
  604. border-bottom: 0;
  605. }
  606. .card .table-view .table-view-divider:first-child {
  607. top: 0;
  608. border-top-left-radius: 6px;
  609. border-top-right-radius: 6px;
  610. }
  611. .card .table-view .table-view-divider:last-child {
  612. border-bottom-right-radius: 6px;
  613. border-bottom-left-radius: 6px;
  614. }
  615. .card .table-view-cell:last-child {
  616. border-bottom: 0;
  617. }
  618. .table-view {
  619. padding-left: 0;
  620. margin-top: 0;
  621. margin-bottom: 15px;
  622. list-style: none;
  623. background-color: #fff;
  624. border-top: 1px solid #ddd;
  625. border-bottom: 1px solid #ddd;
  626. }
  627. .table-view-cell {
  628. position: relative;
  629. padding: 11px 65px 11px 15px;
  630. overflow: hidden;
  631. border-bottom: 1px solid #ddd;
  632. }
  633. .table-view-cell:last-child {
  634. border-bottom: 0;
  635. }
  636. .table-view-cell > a:not(.btn) {
  637. position: relative;
  638. display: block;
  639. padding: inherit;
  640. margin: -11px -65px -11px -15px;
  641. overflow: hidden;
  642. color: inherit;
  643. }
  644. .table-view-cell > a:not(.btn):active {
  645. background-color: #eee;
  646. }
  647. .table-view-cell p {
  648. margin-bottom: 0;
  649. }
  650. .table-view-divider {
  651. padding-top: 6px;
  652. padding-bottom: 6px;
  653. padding-left: 15px;
  654. margin-top: -1px;
  655. margin-left: 0;
  656. font-weight: 500;
  657. color: #999;
  658. background-color: #fafafa;
  659. border-top: 1px solid #ddd;
  660. border-bottom: 1px solid #ddd;
  661. }
  662. .table-view .media,
  663. .table-view .media-body {
  664. overflow: hidden;
  665. }
  666. .table-view .media-object.pull-left {
  667. margin-right: 10px;
  668. }
  669. .table-view .media-object.pull-right {
  670. margin-left: 10px;
  671. }
  672. .table-view-cell > .btn,
  673. .table-view-cell > .badge,
  674. .table-view-cell > .toggle,
  675. .table-view-cell > a > .btn,
  676. .table-view-cell > a > .badge,
  677. .table-view-cell > a > .toggle {
  678. position: absolute;
  679. top: 50%;
  680. right: 15px;
  681. -webkit-transform: translateY(-50%);
  682. -ms-transform: translateY(-50%);
  683. transform: translateY(-50%);
  684. }
  685. .table-view-cell .navigate-left > .btn,
  686. .table-view-cell .navigate-left > .badge,
  687. .table-view-cell .navigate-left > .toggle,
  688. .table-view-cell .navigate-right > .btn,
  689. .table-view-cell .navigate-right > .badge,
  690. .table-view-cell .navigate-right > .toggle,
  691. .table-view-cell .push-left > .btn,
  692. .table-view-cell .push-left > .badge,
  693. .table-view-cell .push-left > .toggle,
  694. .table-view-cell .push-right > .btn,
  695. .table-view-cell .push-right > .badge,
  696. .table-view-cell .push-right > .toggle,
  697. .table-view-cell > a .navigate-left > .btn,
  698. .table-view-cell > a .navigate-left > .badge,
  699. .table-view-cell > a .navigate-left > .toggle,
  700. .table-view-cell > a .navigate-right > .btn,
  701. .table-view-cell > a .navigate-right > .badge,
  702. .table-view-cell > a .navigate-right > .toggle,
  703. .table-view-cell > a .push-left > .btn,
  704. .table-view-cell > a .push-left > .badge,
  705. .table-view-cell > a .push-left > .toggle,
  706. .table-view-cell > a .push-right > .btn,
  707. .table-view-cell > a .push-right > .badge,
  708. .table-view-cell > a .push-right > .toggle {
  709. right: 35px;
  710. }
  711. .content > .table-view:first-child {
  712. margin-top: 15px;
  713. }
  714. input,
  715. textarea,
  716. button,
  717. select {
  718. font-family: "Helvetica Neue", Helvetica, sans-serif;
  719. font-size: 17px;
  720. }
  721. select,
  722. textarea,
  723. input[type="text"],
  724. input[type="search"],
  725. input[type="password"],
  726. input[type="datetime"],
  727. input[type="datetime-local"],
  728. input[type="date"],
  729. input[type="month"],
  730. input[type="time"],
  731. input[type="week"],
  732. input[type="number"],
  733. input[type="email"],
  734. input[type="url"],
  735. input[type="tel"],
  736. input[type="color"] {
  737. width: 100%;
  738. height: 35px;
  739. -webkit-appearance: none;
  740. padding: 0 15px;
  741. margin-bottom: 15px;
  742. line-height: 21px;
  743. background-color: #fff;
  744. border: 1px solid #ddd;
  745. border-radius: 3px;
  746. outline: none;
  747. }
  748. input[type="search"] {
  749. -webkit-box-sizing: border-box;
  750. -moz-box-sizing: border-box;
  751. box-sizing: border-box;
  752. padding: 0 10px;
  753. font-size: 16px;
  754. border-radius: 20px;
  755. }
  756. input[type="search"]:focus {
  757. text-align: left;
  758. }
  759. textarea {
  760. height: auto;
  761. }
  762. select {
  763. height: auto;
  764. font-size: 14px;
  765. background-color: #f8f8f8;
  766. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .1);
  767. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .1);
  768. }
  769. .input-group {
  770. background-color: #fff;
  771. }
  772. .input-group input,
  773. .input-group textarea {
  774. margin-bottom: 0;
  775. background-color: transparent;
  776. border-top: 0;
  777. border-right: 0;
  778. border-left: 0;
  779. border-radius: 0;
  780. -webkit-box-shadow: none;
  781. box-shadow: none;
  782. }
  783. .input-row {
  784. height: 35px;
  785. overflow: hidden;
  786. border-bottom: 1px solid #ddd;
  787. }
  788. .input-row label {
  789. float: left;
  790. width: 35%;
  791. padding: 8px 15px;
  792. font-family: "Helvetica Neue", Helvetica, sans-serif;
  793. line-height: 1.1;
  794. }
  795. .input-row input {
  796. float: right;
  797. width: 65%;
  798. padding-left: 0;
  799. margin-bottom: 0;
  800. border: 0;
  801. }
  802. .segmented-control {
  803. position: relative;
  804. display: table;
  805. overflow: hidden;
  806. font-size: 12px;
  807. font-weight: 400;
  808. background-color: white;
  809. border: 1px solid #ccc;
  810. border-radius: 3px;
  811. }
  812. .segmented-control .control-item {
  813. display: table-cell;
  814. width: 1%;
  815. padding-top: 6px;
  816. padding-bottom: 7px;
  817. overflow: hidden;
  818. line-height: 1;
  819. color: #333;
  820. text-align: center;
  821. text-overflow: ellipsis;
  822. white-space: nowrap;
  823. border-left: 1px solid #ccc;
  824. }
  825. .segmented-control .control-item:first-child {
  826. border-left-width: 0;
  827. }
  828. .segmented-control .control-item:active {
  829. background-color: #eee;
  830. }
  831. .segmented-control .control-item.active {
  832. background-color: #ccc;
  833. }
  834. .segmented-control-primary {
  835. border-color: #428bca;
  836. }
  837. .segmented-control-primary .control-item {
  838. color: #428bca;
  839. border-color: inherit;
  840. }
  841. .segmented-control-primary .control-item:active {
  842. background-color: #cde1f1;
  843. }
  844. .segmented-control-primary .control-item.active {
  845. color: #fff;
  846. background-color: #428bca;
  847. }
  848. .segmented-control-positive {
  849. border-color: #5cb85c;
  850. }
  851. .segmented-control-positive .control-item {
  852. color: #5cb85c;
  853. border-color: inherit;
  854. }
  855. .segmented-control-positive .control-item:active {
  856. background-color: #d8eed8;
  857. }
  858. .segmented-control-positive .control-item.active {
  859. color: #fff;
  860. background-color: #5cb85c;
  861. }
  862. .segmented-control-negative {
  863. border-color: #d9534f;
  864. }
  865. .segmented-control-negative .control-item {
  866. color: #d9534f;
  867. border-color: inherit;
  868. }
  869. .segmented-control-negative .control-item:active {
  870. background-color: #f9e2e2;
  871. }
  872. .segmented-control-negative .control-item.active {
  873. color: #fff;
  874. background-color: #d9534f;
  875. }
  876. .control-content {
  877. display: none;
  878. }
  879. .control-content.active {
  880. display: block;
  881. }
  882. .popover {
  883. position: fixed;
  884. top: 55px;
  885. left: 50%;
  886. z-index: 20;
  887. display: none;
  888. width: 280px;
  889. margin-left: -140px;
  890. background-color: white;
  891. border-radius: 6px;
  892. -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, .1);
  893. box-shadow: 0 0 15px rgba(0, 0, 0, .1);
  894. opacity: 0;
  895. -webkit-transition: all .25s linear;
  896. -moz-transition: all .25s linear;
  897. transition: all .25s linear;
  898. -webkit-transform: translate3d(0, -15px, 0);
  899. -ms-transform: translate3d(0, -15px, 0);
  900. transform: translate3d(0, -15px, 0);
  901. }
  902. .popover:before {
  903. position: absolute;
  904. top: -15px;
  905. left: 50%;
  906. width: 0;
  907. height: 0;
  908. margin-left: -15px;
  909. content: '';
  910. border-right: 15px solid transparent;
  911. border-bottom: 15px solid white;
  912. border-left: 15px solid transparent;
  913. }
  914. .popover.visible {
  915. opacity: 1;
  916. -webkit-transform: translate3d(0, 0, 0);
  917. -ms-transform: translate3d(0, 0, 0);
  918. transform: translate3d(0, 0, 0);
  919. }
  920. .popover .bar ~ .table-view {
  921. padding-top: 44px;
  922. }
  923. .backdrop {
  924. position: fixed;
  925. top: 0;
  926. right: 0;
  927. bottom: 0;
  928. left: 0;
  929. z-index: 15;
  930. background-color: rgba(0, 0, 0, .3);
  931. }
  932. .popover .btn-block {
  933. margin-bottom: 5px;
  934. }
  935. .popover .btn-block:last-child {
  936. margin-bottom: 0;
  937. }
  938. .popover .bar-nav {
  939. border-bottom: 1px solid #ddd;
  940. border-top-left-radius: 12px;
  941. border-top-right-radius: 12px;
  942. -webkit-box-shadow: none;
  943. box-shadow: none;
  944. }
  945. .popover .table-view {
  946. max-height: 300px;
  947. margin-bottom: 0;
  948. overflow: auto;
  949. -webkit-overflow-scrolling: touch;
  950. background-color: #fff;
  951. border-top: 0;
  952. border-bottom: 0;
  953. border-radius: 6px;
  954. }
  955. .modal {
  956. position: fixed;
  957. top: 0;
  958. z-index: 11;
  959. width: 100%;
  960. min-height: 100%;
  961. overflow: hidden;
  962. background-color: #fff;
  963. opacity: 0;
  964. -webkit-transition: -webkit-transform .25s, opacity 1ms .25s;
  965. -moz-transition: -moz-transform .25s, opacity 1ms .25s;
  966. transition: transform .25s, opacity 1ms .25s;
  967. -webkit-transform: translate3d(0, 100%, 0);
  968. -ms-transform: translate3d(0, 100%, 0);
  969. transform: translate3d(0, 100%, 0);
  970. }
  971. .modal.active {
  972. height: 100%;
  973. opacity: 1;
  974. -webkit-transition: -webkit-transform .25s;
  975. -moz-transition: -moz-transform .25s;
  976. transition: transform .25s;
  977. -webkit-transform: translate3d(0, 0, 0);
  978. -ms-transform: translate3d(0, 0, 0);
  979. transform: translate3d(0, 0, 0);
  980. }
  981. .slider {
  982. width: 100%;
  983. }
  984. .slider {
  985. overflow: hidden;
  986. background-color: #000;
  987. }
  988. .slider .slide-group {
  989. position: relative;
  990. font-size: 0;
  991. white-space: nowrap;
  992. -webkit-transition: all 0s linear;
  993. -moz-transition: all 0s linear;
  994. transition: all 0s linear;
  995. }
  996. .slider .slide-group .slide {
  997. display: inline-block;
  998. width: 100%;
  999. height: 100%;
  1000. font-size: 14px;
  1001. vertical-align: top;
  1002. }
  1003. .toggle {
  1004. position: relative;
  1005. display: block;
  1006. width: 74px;
  1007. height: 30px;
  1008. background-color: #fff;
  1009. border: 2px solid #ddd;
  1010. border-radius: 20px;
  1011. -webkit-transition-duration: .2s;
  1012. -moz-transition-duration: .2s;
  1013. transition-duration: .2s;
  1014. -webkit-transition-property: background-color, border;
  1015. -moz-transition-property: background-color, border;
  1016. transition-property: background-color, border;
  1017. }
  1018. .toggle .toggle-handle {
  1019. position: absolute;
  1020. top: -1px;
  1021. left: -1px;
  1022. z-index: 2;
  1023. width: 28px;
  1024. height: 28px;
  1025. background-color: #fff;
  1026. border: 1px solid #ddd;
  1027. border-radius: 100px;
  1028. -webkit-transition-duration: .2s;
  1029. -moz-transition-duration: .2s;
  1030. transition-duration: .2s;
  1031. -webkit-transition-property: -webkit-transform, border, width;
  1032. -moz-transition-property: -moz-transform, border, width;
  1033. transition-property: transform, border, width;
  1034. }
  1035. .toggle:before {
  1036. position: absolute;
  1037. top: 3px;
  1038. right: 11px;
  1039. font-size: 13px;
  1040. color: #999;
  1041. text-transform: uppercase;
  1042. content: "Off";
  1043. }
  1044. .toggle.active {
  1045. background-color: #5cb85c;
  1046. border: 2px solid #5cb85c;
  1047. }
  1048. .toggle.active .toggle-handle {
  1049. border-color: #5cb85c;
  1050. -webkit-transform: translate3d(44px, 0, 0);
  1051. -ms-transform: translate3d(44px, 0, 0);
  1052. transform: translate3d(44px, 0, 0);
  1053. }
  1054. .toggle.active:before {
  1055. right: auto;
  1056. left: 15px;
  1057. color: #fff;
  1058. content: "On";
  1059. }
  1060. .toggle input[type="checkbox"] {
  1061. display: none;
  1062. }
  1063. .content.fade {
  1064. left: 0;
  1065. opacity: 0;
  1066. }
  1067. .content.fade.in {
  1068. opacity: 1;
  1069. }
  1070. .content.sliding {
  1071. z-index: 2;
  1072. -webkit-transition: -webkit-transform .4s;
  1073. -moz-transition: -moz-transform .4s;
  1074. transition: transform .4s;
  1075. -webkit-transform: translate3d(0, 0, 0);
  1076. -ms-transform: translate3d(0, 0, 0);
  1077. transform: translate3d(0, 0, 0);
  1078. }
  1079. .content.sliding.left {
  1080. z-index: 1;
  1081. -webkit-transform: translate3d(-100%, 0, 0);
  1082. -ms-transform: translate3d(-100%, 0, 0);
  1083. transform: translate3d(-100%, 0, 0);
  1084. }
  1085. .content.sliding.right {
  1086. z-index: 3;
  1087. -webkit-transform: translate3d(100%, 0, 0);
  1088. -ms-transform: translate3d(100%, 0, 0);
  1089. transform: translate3d(100%, 0, 0);
  1090. }
  1091. .navigate-left:after,
  1092. .navigate-right:after,
  1093. .push-left:after,
  1094. .push-right:after {
  1095. position: absolute;
  1096. top: 50%;
  1097. display: inline-block;
  1098. font-family: Ratchicons;
  1099. font-size: inherit;
  1100. line-height: 1;
  1101. color: #bbb;
  1102. text-decoration: none;
  1103. -webkit-transform: translateY(-50%);
  1104. -ms-transform: translateY(-50%);
  1105. transform: translateY(-50%);
  1106. -webkit-font-smoothing: antialiased;
  1107. }
  1108. .navigate-left:after,
  1109. .push-left:after {
  1110. left: 15px;
  1111. content: '\e822';
  1112. }
  1113. .navigate-right:after,
  1114. .push-right:after {
  1115. right: 15px;
  1116. content: '\e826';
  1117. }
  1118. @font-face {
  1119. font-family: Ratchicons;
  1120. font-style: normal;
  1121. font-weight: normal;
  1122. src: url("../fonts/ratchicons.eot");
  1123. src: url("../fonts/ratchicons.eot?#iefix") format("embedded-opentype"), url("../fonts/ratchicons.woff") format("woff"), url("../fonts/ratchicons.ttf") format("truetype"), url("../fonts/ratchicons.svg#svgFontName") format("svg");
  1124. }
  1125. .icon {
  1126. display: inline-block;
  1127. font-family: Ratchicons;
  1128. font-size: 24px;
  1129. line-height: 1;
  1130. text-decoration: none;
  1131. -webkit-font-smoothing: antialiased;
  1132. }
  1133. .icon-back:before {
  1134. content: '\e80a';
  1135. }
  1136. .icon-bars:before {
  1137. content: '\e80e';
  1138. }
  1139. .icon-caret:before {
  1140. content: '\e80f';
  1141. }
  1142. .icon-check:before {
  1143. content: '\e810';
  1144. }
  1145. .icon-close:before {
  1146. content: '\e811';
  1147. }
  1148. .icon-code:before {
  1149. content: '\e812';
  1150. }
  1151. .icon-compose:before {
  1152. content: '\e813';
  1153. }
  1154. .icon-download:before {
  1155. content: '\e815';
  1156. }
  1157. .icon-edit:before {
  1158. content: '\e829';
  1159. }
  1160. .icon-forward:before {
  1161. content: '\e82a';
  1162. }
  1163. .icon-gear:before {
  1164. content: '\e821';
  1165. }
  1166. .icon-home:before {
  1167. content: '\e82b';
  1168. }
  1169. .icon-info:before {
  1170. content: '\e82c';
  1171. }
  1172. .icon-list:before {
  1173. content: '\e823';
  1174. }
  1175. .icon-more-vertical:before {
  1176. content: '\e82e';
  1177. }
  1178. .icon-more:before {
  1179. content: '\e82f';
  1180. }
  1181. .icon-pages:before {
  1182. content: '\e824';
  1183. }
  1184. .icon-pause:before {
  1185. content: '\e830';
  1186. }
  1187. .icon-person:before {
  1188. content: '\e832';
  1189. }
  1190. .icon-play:before {
  1191. content: '\e816';
  1192. }
  1193. .icon-plus:before {
  1194. content: '\e817';
  1195. }
  1196. .icon-refresh:before {
  1197. content: '\e825';
  1198. }
  1199. .icon-search:before {
  1200. content: '\e819';
  1201. }
  1202. .icon-share:before {
  1203. content: '\e81a';
  1204. }
  1205. .icon-sound:before {
  1206. content: '\e827';
  1207. }
  1208. .icon-sound2:before {
  1209. content: '\e828';
  1210. }
  1211. .icon-sound3:before {
  1212. content: '\e80b';
  1213. }
  1214. .icon-sound4:before {
  1215. content: '\e80c';
  1216. }
  1217. .icon-star-filled:before {
  1218. content: '\e81b';
  1219. }
  1220. .icon-star:before {
  1221. content: '\e81c';
  1222. }
  1223. .icon-stop:before {
  1224. content: '\e81d';
  1225. }
  1226. .icon-trash:before {
  1227. content: '\e81e';
  1228. }
  1229. .icon-up-nav:before {
  1230. content: '\e81f';
  1231. }
  1232. .icon-up:before {
  1233. content: '\e80d';
  1234. }
  1235. .icon-right-nav:before {
  1236. content: '\e818';
  1237. }
  1238. .icon-right:before {
  1239. content: '\e826';
  1240. }
  1241. .icon-down-nav:before {
  1242. content: '\e814';
  1243. }
  1244. .icon-down:before {
  1245. content: '\e820';
  1246. }
  1247. .icon-left-nav:before {
  1248. content: '\e82d';
  1249. }
  1250. .icon-left:before {
  1251. content: '\e822';
  1252. }