style.css 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. .documentation a {
  2. color: #1184CE;
  3. }
  4. .documentation .suppress-p-margin p {
  5. margin:0;
  6. }
  7. .force-inline, .force-inline p {
  8. display: inline;
  9. color: #222;
  10. }
  11. .container-small {
  12. max-width: 58rem;
  13. margin-left: auto;
  14. margin-right: auto;
  15. }
  16. .max-height-100 {
  17. max-height: 100%;
  18. }
  19. .fade {
  20. opacity:0.50;
  21. }
  22. .button-indent {
  23. padding: .25rem 1.5rem;
  24. font-size: 90%;
  25. }
  26. .section-indent {
  27. border-left: 2px solid #eee;
  28. }
  29. .bg-cloudy {
  30. background: #fafafa;
  31. }
  32. .force-inline * {
  33. display:inline;
  34. }
  35. section:target h3 {
  36. font-weight:700;
  37. }
  38. .documentation,
  39. .documentation h1,
  40. .documentation h2,
  41. .documentation h3,
  42. .documentation h4,
  43. .documentation h5,
  44. .documentation h6 {
  45. font-family: 'Source Sans Pro', Helvetica, sans-serif;
  46. }
  47. .documentation pre,
  48. .documentation code,
  49. .documentation samp {
  50. font-family: 'Source Code Pro', monospace;
  51. font-size: 90%;
  52. }
  53. .documentation td,
  54. .documentation th {
  55. padding: .25rem .25rem;
  56. }
  57. h1:hover .anchorjs-link,
  58. h2:hover .anchorjs-link,
  59. h3:hover .anchorjs-link,
  60. h4:hover .anchorjs-link {
  61. opacity: 1;
  62. }
  63. .collapsible .collapser {
  64. display:none;
  65. }
  66. .collapsible:target .collapser {
  67. display: block;
  68. }
  69. .fix-3 {
  70. width: 25%;
  71. max-width: 244px;
  72. }
  73. @media (min-width: 52em) {
  74. .fix-margin-3 {
  75. margin-left: 25%;
  76. }
  77. }