docs.css 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632
  1. /*!
  2. * Bootstrap Docs (http://getbootstrap.com)
  3. * Copyright 2011-2016 Twitter, Inc.
  4. * Licensed under the Creative Commons Attribution 3.0 Unported License. For
  5. * details, see https://creativecommons.org/licenses/by/3.0/.
  6. */
  7. /*
  8. * Bootstrap Documentation
  9. * Special styles for presenting Bootstrap's documentation and code examples.
  10. */
  11. /*
  12. * Scaffolding
  13. *
  14. * Update the basics of our documents to prep for docs content.
  15. */
  16. body {
  17. position: relative; /* For scrollspy */
  18. }
  19. /* Keep code small in tables on account of limited space */
  20. .table code {
  21. font-size: 13px;
  22. font-weight: normal;
  23. }
  24. /* Inline code within headings retain the heading's background-color */
  25. h2 code,
  26. h3 code,
  27. h4 code {
  28. background-color: inherit;
  29. }
  30. /* Outline button for use within the docs */
  31. .btn-outline {
  32. color: #563d7c;
  33. background-color: transparent;
  34. border-color: #563d7c;
  35. }
  36. .btn-outline:hover,
  37. .btn-outline:focus,
  38. .btn-outline:active {
  39. color: #fff;
  40. background-color: #563d7c;
  41. border-color: #563d7c;
  42. }
  43. /* Inverted outline button (white on dark) */
  44. .btn-outline-inverse {
  45. color: #fff;
  46. background-color: transparent;
  47. border-color: #cdbfe3;
  48. }
  49. .btn-outline-inverse:hover,
  50. .btn-outline-inverse:focus,
  51. .btn-outline-inverse:active {
  52. color: #563d7c;
  53. text-shadow: none;
  54. background-color: #fff;
  55. border-color: #fff;
  56. }
  57. /* Bootstrap "B" icon */
  58. .bs-docs-booticon {
  59. display: block;
  60. font-weight: 500;
  61. color: #fff;
  62. text-align: center;
  63. cursor: default;
  64. background-color: #563d7c;
  65. border-radius: 15%;
  66. }
  67. .bs-docs-booticon-sm {
  68. width: 30px;
  69. height: 30px;
  70. font-size: 20px;
  71. line-height: 28px;
  72. }
  73. .bs-docs-booticon-lg {
  74. width: 144px;
  75. height: 144px;
  76. font-size: 108px;
  77. line-height: 140px;
  78. }
  79. .bs-docs-booticon-inverse {
  80. color: #563d7c;
  81. background-color: #fff;
  82. }
  83. .bs-docs-booticon-outline {
  84. background-color: transparent;
  85. border: 1px solid #cdbfe3;
  86. }
  87. /*
  88. * Fancy skip link
  89. *
  90. * Make it look a bit less "bare bones"
  91. * Also includes focus suppression for the Chrome tabindex="-1" workaround
  92. */
  93. #skippy {
  94. display: block;
  95. padding: 1em;
  96. color: #fff;
  97. background-color: #6f5499;
  98. outline: 0;
  99. }
  100. #skippy .skiplink-text {
  101. padding: .5em;
  102. outline: 1px dotted;
  103. }
  104. #content:focus {
  105. outline: none;
  106. }
  107. /*
  108. * Main navigation
  109. *
  110. * Turn the `.navbar` at the top of the docs purple.
  111. */
  112. .bs-docs-nav {
  113. margin-bottom: 0;
  114. background-color: #fff;
  115. border-bottom: 0;
  116. }
  117. .bs-home-nav .bs-nav-b {
  118. display: none;
  119. }
  120. .bs-docs-nav .navbar-brand,
  121. .bs-docs-nav .navbar-nav > li > a {
  122. font-weight: 500;
  123. color: #563d7c;
  124. }
  125. .bs-docs-nav .navbar-nav > li > a:hover,
  126. .bs-docs-nav .navbar-nav > .active > a,
  127. .bs-docs-nav .navbar-nav > .active > a:hover {
  128. color: #463265;
  129. background-color: #f9f9f9;
  130. }
  131. .bs-docs-nav .navbar-toggle .icon-bar {
  132. background-color: #563d7c;
  133. }
  134. .bs-docs-nav .navbar-header .navbar-toggle {
  135. border-color: #fff;
  136. }
  137. .bs-docs-nav .navbar-header .navbar-toggle:hover,
  138. .bs-docs-nav .navbar-header .navbar-toggle:focus {
  139. background-color: #f9f9f9;
  140. border-color: #f9f9f9;
  141. }
  142. /*
  143. * Footer
  144. *
  145. * Separated section of content at the bottom of all pages, save the homepage.
  146. */
  147. .bs-docs-footer {
  148. padding-top: 50px;
  149. padding-bottom: 50px;
  150. margin-top: 100px;
  151. color: #99979c;
  152. text-align: center;
  153. background-color: #2a2730;
  154. }
  155. .bs-docs-footer a {
  156. color: #fff;
  157. }
  158. .bs-docs-footer-links {
  159. padding-left: 0;
  160. margin-bottom: 20px;
  161. }
  162. .bs-docs-footer-links li {
  163. display: inline-block;
  164. }
  165. .bs-docs-footer-links li + li {
  166. margin-left: 15px;
  167. }
  168. @media (min-width: 768px) {
  169. .bs-docs-footer {
  170. text-align: left;
  171. }
  172. .bs-docs-footer p {
  173. margin-bottom: 0;
  174. }
  175. }
  176. /*
  177. * Homepage
  178. *
  179. * Tweaks to the custom homepage and the masthead (main jumbotron).
  180. */
  181. /* Share masthead with page headers */
  182. .bs-docs-masthead,
  183. .bs-docs-header {
  184. position: relative;
  185. padding: 30px 0;
  186. color: #cdbfe3;
  187. text-align: center;
  188. text-shadow: 0 1px 0 rgba(0,0,0,.1);
  189. background-color: #6f5499;
  190. background-image: -webkit-gradient(linear, left top, left bottom, from(#563d7c), to(#6f5499));
  191. background-image: -webkit-linear-gradient(top, #563d7c 0%, #6f5499 100%);
  192. background-image: -o-linear-gradient(top, #563d7c 0%, #6f5499 100%);
  193. background-image: linear-gradient(to bottom, #563d7c 0%, #6f5499 100%);
  194. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#563d7c', endColorstr='#6F5499', GradientType=0);
  195. background-repeat: repeat-x;
  196. }
  197. /* Masthead (headings and download button) */
  198. .bs-docs-masthead .bs-docs-booticon {
  199. margin: 0 auto 30px;
  200. }
  201. .bs-docs-masthead h1 {
  202. font-weight: 300;
  203. line-height: 1;
  204. color: #fff;
  205. }
  206. .bs-docs-masthead .lead {
  207. margin: 0 auto 30px;
  208. font-size: 20px;
  209. color: #fff;
  210. }
  211. .bs-docs-masthead .version {
  212. margin-top: -15px;
  213. margin-bottom: 30px;
  214. color: #9783b9;
  215. }
  216. .bs-docs-masthead .btn {
  217. width: 100%;
  218. padding: 15px 30px;
  219. font-size: 20px;
  220. }
  221. @media (min-width: 480px) {
  222. .bs-docs-masthead .btn {
  223. width: auto;
  224. }
  225. }
  226. @media (min-width: 768px) {
  227. .bs-docs-masthead {
  228. padding: 80px 0;
  229. }
  230. .bs-docs-masthead h1 {
  231. font-size: 60px;
  232. }
  233. .bs-docs-masthead .lead {
  234. font-size: 24px;
  235. }
  236. }
  237. @media (min-width: 992px) {
  238. .bs-docs-masthead .lead {
  239. width: 80%;
  240. font-size: 30px;
  241. }
  242. }
  243. /*
  244. * Page headers
  245. *
  246. * Jumbotron-esque headers at the top of every page that's not the homepage.
  247. */
  248. /* Page headers */
  249. .bs-docs-header {
  250. margin-bottom: 40px;
  251. font-size: 20px;
  252. }
  253. .bs-docs-header h1 {
  254. margin-top: 0;
  255. color: #fff;
  256. }
  257. .bs-docs-header p {
  258. margin-bottom: 0;
  259. font-weight: 300;
  260. line-height: 1.4;
  261. }
  262. .bs-docs-header .container {
  263. position: relative;
  264. }
  265. @media (min-width: 768px) {
  266. .bs-docs-header {
  267. padding-top: 60px;
  268. padding-bottom: 60px;
  269. font-size: 24px;
  270. text-align: left;
  271. }
  272. .bs-docs-header h1 {
  273. font-size: 60px;
  274. line-height: 1;
  275. }
  276. }
  277. @media (min-width: 992px) {
  278. .bs-docs-header h1,
  279. .bs-docs-header p {
  280. margin-right: 380px;
  281. }
  282. }
  283. /*
  284. * Carbon ads
  285. *
  286. * Single display ad that shows on all pages (except homepage) in page headers.
  287. * The hella `!important` is required for any pre-set property.
  288. */
  289. .carbonad {
  290. width: auto !important;
  291. height: auto !important;
  292. padding: 20px !important;
  293. margin: 30px -15px -31px !important;
  294. overflow: hidden; /* clearfix */
  295. font-size: 13px !important;
  296. line-height: 16px !important;
  297. text-align: left;
  298. background: transparent !important;
  299. border: solid #866ab3 !important;
  300. border-width: 1px 0 !important;
  301. }
  302. .carbonad-img {
  303. margin: 0 !important;
  304. }
  305. .carbonad-text,
  306. .carbonad-tag {
  307. display: block !important;
  308. float: none !important;
  309. width: auto !important;
  310. height: auto !important;
  311. margin-left: 145px !important;
  312. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  313. }
  314. .carbonad-text {
  315. padding-top: 0 !important;
  316. }
  317. .carbonad-tag {
  318. color: inherit !important;
  319. text-align: left !important;
  320. }
  321. .carbonad-text a,
  322. .carbonad-tag a {
  323. color: #fff !important;
  324. }
  325. .carbonad #azcarbon > img {
  326. display: none; /* hide what I assume are tracking images */
  327. }
  328. @media (min-width: 480px) {
  329. .carbonad {
  330. width: 330px !important;
  331. margin: 20px auto !important;
  332. border-width: 1px !important;
  333. border-radius: 4px;
  334. }
  335. .bs-docs-masthead .carbonad {
  336. margin: 50px auto 0 !important;
  337. }
  338. }
  339. @media (min-width: 768px) {
  340. .carbonad {
  341. margin-right: 0 !important;
  342. margin-left: 0 !important;
  343. }
  344. }
  345. @media (min-width: 992px) {
  346. .carbonad {
  347. position: absolute;
  348. top: 0;
  349. right: 15px; /* 15px instead of 0 since box-sizing */
  350. width: 330px !important;
  351. padding: 15px !important;
  352. margin: 0 !important;
  353. }
  354. .bs-docs-masthead .carbonad {
  355. position: static;
  356. }
  357. }
  358. /*
  359. * Homepage featurettes
  360. *
  361. * Reasons to use Bootstrap, entries from the Expo, and more.
  362. */
  363. .bs-docs-featurette {
  364. padding-top: 40px;
  365. padding-bottom: 40px;
  366. font-size: 16px;
  367. line-height: 1.5;
  368. color: #555;
  369. text-align: center;
  370. background-color: #fff;
  371. border-bottom: 1px solid #e5e5e5;
  372. }
  373. .bs-docs-featurette + .bs-docs-footer {
  374. margin-top: 0;
  375. border-top: 0;
  376. }
  377. .bs-docs-featurette-title {
  378. margin-bottom: 5px;
  379. font-size: 30px;
  380. font-weight: normal;
  381. color: #333;
  382. }
  383. .half-rule {
  384. width: 100px;
  385. margin: 40px auto;
  386. }
  387. .bs-docs-featurette h3 {
  388. margin-bottom: 5px;
  389. font-weight: normal;
  390. color: #333;
  391. }
  392. .bs-docs-featurette-img {
  393. display: block;
  394. margin-bottom: 20px;
  395. color: #333;
  396. }
  397. .bs-docs-featurette-img:hover {
  398. color: #337ab7;
  399. text-decoration: none;
  400. }
  401. .bs-docs-featurette-img img {
  402. display: block;
  403. margin-bottom: 15px;
  404. }
  405. @media (min-width: 480px) {
  406. .bs-docs-featurette .img-responsive {
  407. margin-top: 30px;
  408. }
  409. }
  410. @media (min-width: 768px) {
  411. .bs-docs-featurette {
  412. padding-top: 100px;
  413. padding-bottom: 100px;
  414. }
  415. .bs-docs-featurette-title {
  416. font-size: 40px;
  417. }
  418. .bs-docs-featurette .lead {
  419. max-width: 80%;
  420. margin-right: auto;
  421. margin-left: auto;
  422. }
  423. .bs-docs-featurette .img-responsive {
  424. margin-top: 0;
  425. }
  426. }
  427. /*
  428. * Featured sites
  429. *
  430. * Homepage thumbnails from the Expo.
  431. */
  432. .bs-docs-featured-sites {
  433. margin-right: -1px;
  434. margin-left: -1px;
  435. }
  436. .bs-docs-featured-sites .col-xs-6 {
  437. padding: 1px;
  438. }
  439. .bs-docs-featured-sites .img-responsive {
  440. margin-top: 0;
  441. }
  442. @media (min-width: 768px) {
  443. .bs-docs-featured-sites .col-sm-3:first-child img {
  444. border-top-left-radius: 4px;
  445. border-bottom-left-radius: 4px;
  446. }
  447. .bs-docs-featured-sites .col-sm-3:last-child img {
  448. border-top-right-radius: 4px;
  449. border-bottom-right-radius: 4px;
  450. }
  451. }
  452. /*
  453. * Examples
  454. *
  455. * Linked docs examples.
  456. */
  457. .bs-examples .thumbnail {
  458. margin-bottom: 10px;
  459. }
  460. .bs-examples h4 {
  461. margin-bottom: 5px;
  462. }
  463. .bs-examples p {
  464. margin-bottom: 20px;
  465. }
  466. @media (max-width: 480px) {
  467. .bs-examples {
  468. margin-right: -10px;
  469. margin-left: -10px;
  470. }
  471. .bs-examples > [class^="col-"] {
  472. padding-right: 10px;
  473. padding-left: 10px;
  474. }
  475. }
  476. /*
  477. * Side navigation
  478. *
  479. * Scrollspy and affixed enhanced navigation to highlight sections and secondary
  480. * sections of docs content.
  481. */
  482. /* By default it's not affixed in mobile views, so undo that */
  483. .bs-docs-sidebar.affix {
  484. position: static;
  485. }
  486. @media (min-width: 768px) {
  487. .bs-docs-sidebar {
  488. padding-left: 20px;
  489. }
  490. }
  491. /* First level of nav */
  492. .bs-docs-sidenav {
  493. margin-top: 20px;
  494. margin-bottom: 20px;
  495. }
  496. /* All levels of nav */
  497. .bs-docs-sidebar .nav > li > a {
  498. display: block;
  499. padding: 4px 20px;
  500. font-size: 13px;
  501. font-weight: 500;
  502. color: #767676;
  503. }
  504. .bs-docs-sidebar .nav > li > a:hover,
  505. .bs-docs-sidebar .nav > li > a:focus {
  506. padding-left: 19px;
  507. color: #563d7c;
  508. text-decoration: none;
  509. background-color: transparent;
  510. border-left: 1px solid #563d7c;
  511. }
  512. .bs-docs-sidebar .nav > .active > a,
  513. .bs-docs-sidebar .nav > .active:hover > a,
  514. .bs-docs-sidebar .nav > .active:focus > a {
  515. padding-left: 18px;
  516. font-weight: bold;
  517. color: #563d7c;
  518. background-color: transparent;
  519. border-left: 2px solid #563d7c;
  520. }
  521. /* Nav: second level (shown on .active) */
  522. .bs-docs-sidebar .nav .nav {
  523. display: none; /* Hide by default, but at >768px, show it */
  524. padding-bottom: 10px;
  525. }
  526. .bs-docs-sidebar .nav .nav > li > a {
  527. padding-top: 1px;
  528. padding-bottom: 1px;
  529. padding-left: 30px;
  530. font-size: 12px;
  531. font-weight: normal;
  532. }
  533. .bs-docs-sidebar .nav .nav > li > a:hover,
  534. .bs-docs-sidebar .nav .nav > li > a:focus {
  535. padding-left: 29px;
  536. }
  537. .bs-docs-sidebar .nav .nav > .active > a,
  538. .bs-docs-sidebar .nav .nav > .active:hover > a,
  539. .bs-docs-sidebar .nav .nav > .active:focus > a {
  540. padding-left: 28px;
  541. font-weight: 500;
  542. }
  543. /* Back to top (hidden on mobile) */
  544. .back-to-top,
  545. .bs-docs-theme-toggle {
  546. display: none;
  547. padding: 4px 10px;
  548. margin-top: 10px;
  549. margin-left: 10px;
  550. font-size: 12px;
  551. font-weight: 500;
  552. color: #999;
  553. }
  554. .back-to-top:hover,
  555. .bs-docs-theme-toggle:hover {
  556. color: #563d7c;
  557. text-decoration: none;
  558. }
  559. .bs-docs-theme-toggle {
  560. margin-top: 0;
  561. }
  562. @media (min-width: 768px) {
  563. .back-to-top,
  564. .bs-docs-theme-toggle {
  565. display: block;
  566. }
  567. }
  568. /* Show and affix the side nav when space allows it */
  569. @media (min-width: 992px) {
  570. .bs-docs-sidebar .nav > .active > ul {
  571. display: block;
  572. }
  573. /* Widen the fixed sidebar */
  574. .bs-docs-sidebar.affix,
  575. .bs-docs-sidebar.affix-bottom {
  576. width: 213px;
  577. }
  578. .bs-docs-sidebar.affix {
  579. position: fixed; /* Undo the static from mobile first approach */
  580. top: 20px;
  581. }
  582. .bs-docs-sidebar.affix-bottom {
  583. position: absolute; /* Undo the static from mobile first approach */
  584. }
  585. .bs-docs-sidebar.affix-bottom .bs-docs-sidenav,
  586. .bs-docs-sidebar.affix .bs-docs-sidenav {
  587. margin-top: 0;
  588. margin-bottom: 0;
  589. }
  590. }
  591. @media (min-width: 1200px) {
  592. /* Widen the fixed sidebar again */
  593. .bs-docs-sidebar.affix-bottom,
  594. .bs-docs-sidebar.affix {
  595. width: 263px;
  596. }
  597. }
  598. /*
  599. * Docs sections
  600. *
  601. * Content blocks for each component or feature.
  602. */
  603. /* Space things out */
  604. .bs-docs-section {
  605. margin-bottom: 60px;
  606. }
  607. .bs-docs-section:last-child {
  608. margin-bottom: 0;
  609. }
  610. h1[id] {
  611. padding-top: 20px;
  612. margin-top: 0;
  613. }
  614. /*
  615. * Callouts
  616. *
  617. * Not quite alerts, but custom and helpful notes for folks reading the docs.
  618. * Requires a base and modifier class.
  619. */
  620. /* Common styles for all types */
  621. .bs-callout {
  622. padding: 20px;
  623. margin: 20px 0;
  624. border: 1px solid #eee;
  625. border-left-width: 5px;
  626. border-radius: 3px;
  627. }
  628. .bs-callout h4 {
  629. margin-top: 0;
  630. margin-bottom: 5px;
  631. }
  632. .bs-callout p:last-child {
  633. margin-bottom: 0;
  634. }
  635. .bs-callout code {
  636. border-radius: 3px;
  637. }
  638. /* Tighten up space between multiple callouts */
  639. .bs-callout + .bs-callout {
  640. margin-top: -5px;
  641. }
  642. /* Variations */
  643. .bs-callout-danger {
  644. border-left-color: #ce4844;
  645. }
  646. .bs-callout-danger h4 {
  647. color: #ce4844;
  648. }
  649. .bs-callout-warning {
  650. border-left-color: #aa6708;
  651. }
  652. .bs-callout-warning h4 {
  653. color: #aa6708;
  654. }
  655. .bs-callout-info {
  656. border-left-color: #1b809e;
  657. }
  658. .bs-callout-info h4 {
  659. color: #1b809e;
  660. }
  661. /*
  662. * Color swatches
  663. *
  664. * Color swatches and associated values for our grayscale and brand colors.
  665. */
  666. .color-swatches {
  667. margin: 0 -5px;
  668. overflow: hidden; /* clearfix */
  669. }
  670. .color-swatch {
  671. float: left;
  672. width: 60px;
  673. height: 60px;
  674. margin: 0 5px;
  675. border-radius: 3px;
  676. }
  677. @media (min-width: 768px) {
  678. .color-swatch {
  679. width: 100px;
  680. height: 100px;
  681. }
  682. }
  683. /* Framework colors */
  684. .color-swatches .gray-darker {
  685. background-color: #222;
  686. }
  687. .color-swatches .gray-dark {
  688. background-color: #333;
  689. }
  690. .color-swatches .gray {
  691. background-color: #555;
  692. }
  693. .color-swatches .gray-light {
  694. background-color: #999;
  695. }
  696. .color-swatches .gray-lighter {
  697. background-color: #eee;
  698. }
  699. .color-swatches .brand-primary {
  700. background-color: #337ab7;
  701. }
  702. .color-swatches .brand-success {
  703. background-color: #5cb85c;
  704. }
  705. .color-swatches .brand-warning {
  706. background-color: #f0ad4e;
  707. }
  708. .color-swatches .brand-danger {
  709. background-color: #d9534f;
  710. }
  711. .color-swatches .brand-info {
  712. background-color: #5bc0de;
  713. }
  714. /* Docs colors */
  715. .color-swatches .bs-purple {
  716. background-color: #563d7c;
  717. }
  718. .color-swatches .bs-purple-light {
  719. background-color: #c7bfd3;
  720. }
  721. .color-swatches .bs-purple-lighter {
  722. background-color: #e5e1ea;
  723. }
  724. .color-swatches .bs-gray {
  725. background-color: #f9f9f9;
  726. }
  727. /*
  728. * Team members
  729. *
  730. * Avatars, names, and usernames for core team.
  731. */
  732. .bs-team .team-member {
  733. line-height: 32px;
  734. color: #555;
  735. }
  736. .bs-team .team-member:hover {
  737. color: #333;
  738. text-decoration: none;
  739. }
  740. .bs-team .github-btn {
  741. float: right;
  742. width: 180px;
  743. height: 20px;
  744. margin-top: 6px;
  745. border: none;
  746. }
  747. .bs-team img {
  748. float: left;
  749. width: 32px;
  750. margin-right: 10px;
  751. border-radius: 4px;
  752. }
  753. /*
  754. * Wall of Browser Bugs
  755. *
  756. * Better display for the responsive table on the Wall of Browser Bugs.
  757. */
  758. .bs-docs-browser-bugs td p {
  759. margin-bottom: 0;
  760. }
  761. .bs-docs-browser-bugs th:first-child {
  762. width: 18%;
  763. }
  764. /*
  765. * Grid examples
  766. *
  767. * Highlight the grid columns within the docs so folks can see their padding,
  768. * alignment, sizing, etc.
  769. */
  770. .show-grid {
  771. margin-bottom: 15px;
  772. }
  773. .show-grid [class^="col-"] {
  774. padding-top: 10px;
  775. padding-bottom: 10px;
  776. background-color: #eee;
  777. background-color: rgba(86,61,124,.15);
  778. border: 1px solid #ddd;
  779. border: 1px solid rgba(86,61,124,.2);
  780. }
  781. /*
  782. * Examples
  783. *
  784. * Isolated sections of example content for each component or feature. Usually
  785. * followed by a code snippet.
  786. */
  787. .bs-example {
  788. position: relative;
  789. padding: 45px 15px 15px;
  790. margin: 0 -15px 15px;
  791. border-color: #e5e5e5 #eee #eee;
  792. border-style: solid;
  793. border-width: 1px 0;
  794. -webkit-box-shadow: inset 0 3px 6px rgba(0,0,0,.05);
  795. box-shadow: inset 0 3px 6px rgba(0,0,0,.05);
  796. }
  797. /* Echo out a label for the example */
  798. .bs-example:after {
  799. position: absolute;
  800. top: 15px;
  801. left: 15px;
  802. font-size: 12px;
  803. font-weight: bold;
  804. color: #959595;
  805. text-transform: uppercase;
  806. letter-spacing: 1px;
  807. content: "Example";
  808. }
  809. .bs-example-padded-bottom {
  810. padding-bottom: 24px;
  811. }
  812. /* Tweak display of the code snippets when following an example */
  813. .bs-example + .highlight,
  814. .bs-example + .zero-clipboard + .highlight {
  815. margin: -15px -15px 15px;
  816. border-width: 0 0 1px;
  817. border-radius: 0;
  818. }
  819. /* Make the examples and snippets not full-width */
  820. @media (min-width: 768px) {
  821. .bs-example {
  822. margin-right: 0;
  823. margin-left: 0;
  824. background-color: #fff;
  825. border-color: #ddd;
  826. border-width: 1px;
  827. border-radius: 4px 4px 0 0;
  828. -webkit-box-shadow: none;
  829. box-shadow: none;
  830. }
  831. .bs-example + .highlight,
  832. .bs-example + .zero-clipboard + .highlight {
  833. margin-top: -16px;
  834. margin-right: 0;
  835. margin-left: 0;
  836. border-width: 1px;
  837. border-bottom-right-radius: 4px;
  838. border-bottom-left-radius: 4px;
  839. }
  840. .bs-example-standalone {
  841. border-radius: 4px;
  842. }
  843. }
  844. /* Undo width of container */
  845. .bs-example .container {
  846. width: auto;
  847. }
  848. /* Tweak content of examples for optimum awesome */
  849. .bs-example > p:last-child,
  850. .bs-example > ul:last-child,
  851. .bs-example > ol:last-child,
  852. .bs-example > blockquote:last-child,
  853. .bs-example > .form-control:last-child,
  854. .bs-example > .table:last-child,
  855. .bs-example > .navbar:last-child,
  856. .bs-example > .jumbotron:last-child,
  857. .bs-example > .alert:last-child,
  858. .bs-example > .panel:last-child,
  859. .bs-example > .list-group:last-child,
  860. .bs-example > .well:last-child,
  861. .bs-example > .progress:last-child,
  862. .bs-example > .table-responsive:last-child > .table {
  863. margin-bottom: 0;
  864. }
  865. .bs-example > p > .close {
  866. float: none;
  867. }
  868. /* Typography */
  869. .bs-example-type .table .type-info {
  870. color: #767676;
  871. vertical-align: middle;
  872. }
  873. .bs-example-type .table td {
  874. padding: 15px 0;
  875. border-color: #eee;
  876. }
  877. .bs-example-type .table tr:first-child td {
  878. border-top: 0;
  879. }
  880. .bs-example-type h1,
  881. .bs-example-type h2,
  882. .bs-example-type h3,
  883. .bs-example-type h4,
  884. .bs-example-type h5,
  885. .bs-example-type h6 {
  886. margin: 0;
  887. }
  888. /* Contextual background colors */
  889. .bs-example-bg-classes p {
  890. padding: 15px;
  891. }
  892. /* Images */
  893. .bs-example > .img-circle,
  894. .bs-example > .img-rounded,
  895. .bs-example > .img-thumbnail {
  896. margin: 5px;
  897. }
  898. /* Tables */
  899. .bs-example > .table-responsive > .table {
  900. background-color: #fff;
  901. }
  902. /* Buttons */
  903. .bs-example > .btn,
  904. .bs-example > .btn-group {
  905. margin-top: 5px;
  906. margin-bottom: 5px;
  907. }
  908. .bs-example > .btn-toolbar + .btn-toolbar {
  909. margin-top: 10px;
  910. }
  911. /* Forms */
  912. .bs-example-control-sizing select,
  913. .bs-example-control-sizing input[type="text"] + input[type="text"] {
  914. margin-top: 10px;
  915. }
  916. .bs-example-form .input-group {
  917. margin-bottom: 10px;
  918. }
  919. .bs-example > textarea.form-control {
  920. resize: vertical;
  921. }
  922. /* List groups */
  923. .bs-example > .list-group {
  924. max-width: 400px;
  925. }
  926. /* Navbars */
  927. .bs-example .navbar:last-child {
  928. margin-bottom: 0;
  929. }
  930. .bs-navbar-top-example,
  931. .bs-navbar-bottom-example {
  932. z-index: 1;
  933. padding: 0;
  934. overflow: hidden; /* cut the drop shadows off */
  935. }
  936. .bs-navbar-top-example .navbar-header,
  937. .bs-navbar-bottom-example .navbar-header {
  938. margin-left: 0;
  939. }
  940. .bs-navbar-top-example .navbar-fixed-top,
  941. .bs-navbar-bottom-example .navbar-fixed-bottom {
  942. position: relative;
  943. margin-right: 0;
  944. margin-left: 0;
  945. }
  946. .bs-navbar-top-example {
  947. padding-bottom: 45px;
  948. }
  949. .bs-navbar-top-example:after {
  950. top: auto;
  951. bottom: 15px;
  952. }
  953. .bs-navbar-top-example .navbar-fixed-top {
  954. top: -1px;
  955. }
  956. .bs-navbar-bottom-example {
  957. padding-top: 45px;
  958. }
  959. .bs-navbar-bottom-example .navbar-fixed-bottom {
  960. bottom: -1px;
  961. }
  962. .bs-navbar-bottom-example .navbar {
  963. margin-bottom: 0;
  964. }
  965. @media (min-width: 768px) {
  966. .bs-navbar-top-example .navbar-fixed-top,
  967. .bs-navbar-bottom-example .navbar-fixed-bottom {
  968. position: absolute;
  969. }
  970. }
  971. /* Pagination */
  972. .bs-example .pagination {
  973. margin-top: 10px;
  974. margin-bottom: 10px;
  975. }
  976. /* Pager */
  977. .bs-example > .pager {
  978. margin-top: 0;
  979. }
  980. /* Example modals */
  981. .bs-example-modal {
  982. background-color: #f5f5f5;
  983. }
  984. .bs-example-modal .modal {
  985. position: relative;
  986. top: auto;
  987. right: auto;
  988. bottom: auto;
  989. left: auto;
  990. z-index: 1;
  991. display: block;
  992. }
  993. .bs-example-modal .modal-dialog {
  994. left: auto;
  995. margin-right: auto;
  996. margin-left: auto;
  997. }
  998. /* Example dropdowns */
  999. .bs-example > .dropdown > .dropdown-toggle {
  1000. float: left;
  1001. }
  1002. .bs-example > .dropdown > .dropdown-menu {
  1003. position: static;
  1004. display: block;
  1005. margin-bottom: 5px;
  1006. clear: left;
  1007. }
  1008. /* Example tabbable tabs */
  1009. .bs-example-tabs .nav-tabs {
  1010. margin-bottom: 15px;
  1011. }
  1012. /* Tooltips */
  1013. .bs-example-tooltips {
  1014. text-align: center;
  1015. }
  1016. .bs-example-tooltips > .btn {
  1017. margin-top: 5px;
  1018. margin-bottom: 5px;
  1019. }
  1020. .bs-example-tooltip .tooltip {
  1021. position: relative;
  1022. display: inline-block;
  1023. margin: 10px 20px;
  1024. opacity: 1;
  1025. }
  1026. /* Popovers */
  1027. .bs-example-popover {
  1028. padding-bottom: 24px;
  1029. background-color: #f9f9f9;
  1030. }
  1031. .bs-example-popover .popover {
  1032. position: relative;
  1033. display: block;
  1034. float: left;
  1035. width: 260px;
  1036. margin: 20px;
  1037. }
  1038. /* Scrollspy demo on fixed height div */
  1039. .scrollspy-example {
  1040. position: relative;
  1041. height: 200px;
  1042. margin-top: 10px;
  1043. overflow: auto;
  1044. }
  1045. .bs-example > .nav-pills-stacked-example {
  1046. max-width: 300px;
  1047. }
  1048. /* Simple collapse example */
  1049. #collapseExample .well {
  1050. margin-bottom: 0;
  1051. }
  1052. /* Don't wrap event names in Events tables in JS plugin docs */
  1053. .bs-events-table > thead > tr > th:first-child,
  1054. .bs-events-table > tbody > tr > td:first-child {
  1055. white-space: nowrap;
  1056. }
  1057. .bs-events-table > thead > tr > th:first-child {
  1058. width: 150px;
  1059. }
  1060. .js-options-table > thead > tr > th:nth-child(1),
  1061. .js-options-table > thead > tr > th:nth-child(2) {
  1062. width: 100px;
  1063. }
  1064. .js-options-table > thead > tr > th:nth-child(3) {
  1065. width: 50px;
  1066. }
  1067. /*
  1068. * Code snippets
  1069. *
  1070. * Generated via Pygments and Jekyll, these are snippets of HTML, CSS, and JS.
  1071. */
  1072. .highlight {
  1073. padding: 9px 14px;
  1074. margin-bottom: 14px;
  1075. background-color: #f7f7f9;
  1076. border: 1px solid #e1e1e8;
  1077. border-radius: 4px;
  1078. }
  1079. .highlight pre {
  1080. padding: 0;
  1081. margin-top: 0;
  1082. margin-bottom: 0;
  1083. word-break: normal;
  1084. white-space: nowrap;
  1085. background-color: transparent;
  1086. border: 0;
  1087. }
  1088. .highlight pre code {
  1089. font-size: inherit;
  1090. color: #333; /* Effectively the base text color */
  1091. }
  1092. .highlight pre code:first-child {
  1093. display: inline-block;
  1094. padding-right: 45px;
  1095. }
  1096. /*
  1097. * Responsive tests
  1098. *
  1099. * Generate a set of tests to show the responsive utilities in action.
  1100. */
  1101. /* Responsive (scrollable) doc tables */
  1102. .table-responsive .highlight pre {
  1103. white-space: normal;
  1104. }
  1105. /* Utility classes table */
  1106. .bs-table th small,
  1107. .responsive-utilities th small {
  1108. display: block;
  1109. font-weight: normal;
  1110. color: #999;
  1111. }
  1112. .responsive-utilities tbody th {
  1113. font-weight: normal;
  1114. }
  1115. .responsive-utilities td {
  1116. text-align: center;
  1117. }
  1118. .responsive-utilities td.is-visible {
  1119. color: #468847;
  1120. background-color: #dff0d8 !important;
  1121. }
  1122. .responsive-utilities td.is-hidden {
  1123. color: #ccc;
  1124. background-color: #f9f9f9 !important;
  1125. }
  1126. /* Responsive tests */
  1127. .responsive-utilities-test {
  1128. margin-top: 5px;
  1129. }
  1130. .responsive-utilities-test .col-xs-6 {
  1131. margin-bottom: 10px;
  1132. }
  1133. .responsive-utilities-test span {
  1134. display: block;
  1135. padding: 15px 10px;
  1136. font-size: 14px;
  1137. font-weight: bold;
  1138. line-height: 1.1;
  1139. text-align: center;
  1140. border-radius: 4px;
  1141. }
  1142. .visible-on .col-xs-6 .hidden-xs,
  1143. .visible-on .col-xs-6 .hidden-sm,
  1144. .visible-on .col-xs-6 .hidden-md,
  1145. .visible-on .col-xs-6 .hidden-lg,
  1146. .hidden-on .col-xs-6 .hidden-xs,
  1147. .hidden-on .col-xs-6 .hidden-sm,
  1148. .hidden-on .col-xs-6 .hidden-md,
  1149. .hidden-on .col-xs-6 .hidden-lg {
  1150. color: #999;
  1151. border: 1px solid #ddd;
  1152. }
  1153. .visible-on .col-xs-6 .visible-xs-block,
  1154. .visible-on .col-xs-6 .visible-sm-block,
  1155. .visible-on .col-xs-6 .visible-md-block,
  1156. .visible-on .col-xs-6 .visible-lg-block,
  1157. .hidden-on .col-xs-6 .visible-xs-block,
  1158. .hidden-on .col-xs-6 .visible-sm-block,
  1159. .hidden-on .col-xs-6 .visible-md-block,
  1160. .hidden-on .col-xs-6 .visible-lg-block {
  1161. color: #468847;
  1162. background-color: #dff0d8;
  1163. border: 1px solid #d6e9c6;
  1164. }
  1165. /*
  1166. * Glyphicons
  1167. *
  1168. * Special styles for displaying the icons and their classes in the docs.
  1169. */
  1170. .bs-glyphicons {
  1171. margin: 0 -10px 20px;
  1172. overflow: hidden;
  1173. }
  1174. .bs-glyphicons-list {
  1175. padding-left: 0;
  1176. list-style: none;
  1177. }
  1178. .bs-glyphicons li {
  1179. float: left;
  1180. width: 25%;
  1181. height: 115px;
  1182. padding: 10px;
  1183. font-size: 10px;
  1184. line-height: 1.4;
  1185. text-align: center;
  1186. background-color: #f9f9f9;
  1187. border: 1px solid #fff;
  1188. }
  1189. .bs-glyphicons .glyphicon {
  1190. margin-top: 5px;
  1191. margin-bottom: 10px;
  1192. font-size: 24px;
  1193. }
  1194. .bs-glyphicons .glyphicon-class {
  1195. display: block;
  1196. text-align: center;
  1197. word-wrap: break-word; /* Help out IE10+ with class names */
  1198. }
  1199. .bs-glyphicons li:hover {
  1200. color: #fff;
  1201. background-color: #563d7c;
  1202. }
  1203. @media (min-width: 768px) {
  1204. .bs-glyphicons {
  1205. margin-right: 0;
  1206. margin-left: 0;
  1207. }
  1208. .bs-glyphicons li {
  1209. width: 12.5%;
  1210. font-size: 12px;
  1211. }
  1212. }
  1213. /*
  1214. * Customizer
  1215. *
  1216. * Since this is so form control heavy, we have quite a few styles to customize
  1217. * the display of inputs, headings, and more. Also included are all the download
  1218. * buttons and actions.
  1219. */
  1220. .bs-customizer .toggle {
  1221. float: right;
  1222. margin-top: 25px;
  1223. }
  1224. /* Headings and form contrls */
  1225. .bs-customizer label {
  1226. margin-top: 10px;
  1227. font-weight: 500;
  1228. color: #555;
  1229. }
  1230. .bs-customizer h2 {
  1231. padding-top: 30px;
  1232. margin-top: 0;
  1233. margin-bottom: 5px;
  1234. }
  1235. .bs-customizer h3 {
  1236. margin-bottom: 0;
  1237. }
  1238. .bs-customizer h4 {
  1239. margin-top: 15px;
  1240. margin-bottom: 0;
  1241. }
  1242. .bs-customizer .bs-callout h4 {
  1243. margin-top: 0; /* lame, but due to specificity we have to duplicate */
  1244. margin-bottom: 5px;
  1245. }
  1246. .bs-customizer input[type="text"] {
  1247. font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
  1248. background-color: #fafafa;
  1249. }
  1250. .bs-customizer .help-block {
  1251. margin-bottom: 5px;
  1252. font-size: 12px;
  1253. }
  1254. /* For the variables, use regular weight */
  1255. #less-section label {
  1256. font-weight: normal;
  1257. }
  1258. /* Downloads */
  1259. .bs-customize-download .btn-outline {
  1260. padding: 20px;
  1261. }
  1262. /* Error handling */
  1263. .bs-customizer-alert {
  1264. position: fixed;
  1265. top: 0;
  1266. right: 0;
  1267. left: 0;
  1268. z-index: 1030;
  1269. padding: 15px 0;
  1270. color: #fff;
  1271. background-color: #d9534f;
  1272. border-bottom: 1px solid #b94441;
  1273. -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.25);
  1274. box-shadow: inset 0 1px 0 rgba(255,255,255,.25);
  1275. }
  1276. .bs-customizer-alert .close {
  1277. margin-top: -4px;
  1278. font-size: 24px;
  1279. }
  1280. .bs-customizer-alert p {
  1281. margin-bottom: 0;
  1282. }
  1283. .bs-customizer-alert .glyphicon {
  1284. margin-right: 5px;
  1285. }
  1286. .bs-customizer-alert pre {
  1287. margin: 10px 0 0;
  1288. color: #fff;
  1289. background-color: #a83c3a;
  1290. border-color: #973634;
  1291. -webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,.05), 0 1px 0 rgba(255,255,255,.1);
  1292. box-shadow: inset 0 2px 4px rgba(0,0,0,.05), 0 1px 0 rgba(255,255,255,.1);
  1293. }
  1294. .bs-dropzone {
  1295. position: relative;
  1296. padding: 20px;
  1297. margin-bottom: 20px;
  1298. color: #777;
  1299. text-align: center;
  1300. border: 2px dashed #eee;
  1301. border-radius: 4px;
  1302. }
  1303. .bs-dropzone .import-header {
  1304. margin-bottom: 5px;
  1305. }
  1306. .bs-dropzone .glyphicon-download-alt {
  1307. font-size: 40px;
  1308. }
  1309. .bs-dropzone hr {
  1310. width: 100px;
  1311. }
  1312. .bs-dropzone .lead {
  1313. margin-bottom: 10px;
  1314. font-weight: normal;
  1315. color: #333;
  1316. }
  1317. /*.bs-dropzone*/ #import-manual-trigger {
  1318. cursor: pointer;
  1319. }
  1320. .bs-dropzone p:last-child {
  1321. margin-bottom: 0;
  1322. }
  1323. /*
  1324. * Brand guidelines
  1325. *
  1326. * Extra styles for displaying wordmarks, logos, etc.
  1327. */
  1328. /* Logo series wrapper */
  1329. .bs-brand-logos {
  1330. display: table;
  1331. width: 100%;
  1332. margin-bottom: 15px;
  1333. overflow: hidden;
  1334. color: #563d7c;
  1335. background-color: #f9f9f9;
  1336. border-radius: 4px;
  1337. }
  1338. /* Individual items */
  1339. .bs-brand-item {
  1340. padding: 60px 0;
  1341. text-align: center;
  1342. }
  1343. .bs-brand-item + .bs-brand-item {
  1344. border-top: 1px solid #fff;
  1345. }
  1346. .bs-brand-logos .inverse {
  1347. color: #fff;
  1348. background-color: #563d7c;
  1349. }
  1350. /* Heading content within */
  1351. .bs-brand-item h1,
  1352. .bs-brand-item h3 {
  1353. margin-top: 0;
  1354. margin-bottom: 0;
  1355. }
  1356. .bs-brand-item .bs-docs-booticon {
  1357. margin-right: auto;
  1358. margin-left: auto;
  1359. }
  1360. /* Make the icons stand out on what is/isn't okay */
  1361. .bs-brand-item .glyphicon {
  1362. width: 30px;
  1363. height: 30px;
  1364. margin: 10px auto -10px;
  1365. line-height: 30px;
  1366. color: #fff;
  1367. border-radius: 50%;
  1368. }
  1369. .bs-brand-item .glyphicon-ok {
  1370. background-color: #5cb85c;
  1371. }
  1372. .bs-brand-item .glyphicon-remove {
  1373. background-color: #d9534f;
  1374. }
  1375. @media (min-width: 768px) {
  1376. .bs-brand-item {
  1377. display: table-cell;
  1378. width: 1%;
  1379. }
  1380. .bs-brand-item + .bs-brand-item {
  1381. border-top: 0;
  1382. border-left: 1px solid #fff;
  1383. }
  1384. .bs-brand-item h1 {
  1385. font-size: 60px;
  1386. }
  1387. }
  1388. /*
  1389. * ZeroClipboard styles
  1390. */
  1391. .zero-clipboard {
  1392. position: relative;
  1393. display: none;
  1394. }
  1395. .btn-clipboard {
  1396. position: absolute;
  1397. top: 0;
  1398. right: 0;
  1399. z-index: 10;
  1400. display: block;
  1401. padding: 5px 8px;
  1402. font-size: 12px;
  1403. color: #767676;
  1404. cursor: pointer;
  1405. background-color: #fff;
  1406. border: 1px solid #e1e1e8;
  1407. border-radius: 0 4px 0 4px;
  1408. }
  1409. .btn-clipboard-hover {
  1410. color: #fff;
  1411. background-color: #563d7c;
  1412. border-color: #563d7c;
  1413. }
  1414. @media (min-width: 768px) {
  1415. .zero-clipboard {
  1416. display: block;
  1417. }
  1418. .bs-example + .zero-clipboard .btn-clipboard {
  1419. top: -16px;
  1420. border-top-right-radius: 0;
  1421. }
  1422. }
  1423. /*
  1424. * AnchorJS Styles
  1425. */
  1426. .anchorjs-link {
  1427. color: inherit;
  1428. }
  1429. @media (max-width: 480px) {
  1430. .anchorjs-link {
  1431. display: none;
  1432. }
  1433. }
  1434. *:hover > .anchorjs-link {
  1435. opacity: .75;
  1436. -webkit-transition: color .16s linear;
  1437. -o-transition: color .16s linear;
  1438. transition: color .16s linear;
  1439. }
  1440. *:hover > .anchorjs-link:hover,
  1441. .anchorjs-link:focus {
  1442. text-decoration: none;
  1443. opacity: 1;
  1444. }
  1445. /*
  1446. * Miscellaneous
  1447. *
  1448. * Odds and ends for optimum docs display.
  1449. */
  1450. /* Pseudo :focus state for showing how it looks in the docs */
  1451. #focusedInput {
  1452. border-color: rgb(204,204,204); /* Restate unfocused value to make CSSLint happy that there's a pre-CSS3 fallback*/
  1453. border-color: rgba(82,168,236,.8);
  1454. outline: 0;
  1455. outline: thin dotted \9; /* IE6-9 */
  1456. -webkit-box-shadow: 0 0 8px rgba(82,168,236,.6);
  1457. box-shadow: 0 0 8px rgba(82,168,236,.6);
  1458. }
  1459. /* v4 notice above main navbar */
  1460. .v4-tease {
  1461. display: block;
  1462. padding: 15px 20px;
  1463. font-weight: bold;
  1464. color: #fff;
  1465. text-align: center;
  1466. background-color: #0275d8;
  1467. }
  1468. .v4-tease:hover {
  1469. color: #fff;
  1470. text-decoration: none;
  1471. background-color: #0269c2;
  1472. }
  1473. /* Nullify ill-advised printing of hrefs; see #18711 */
  1474. @media print {
  1475. a[href]:after {
  1476. content: "" !important;
  1477. }
  1478. }