custom.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. @import url("vendor.css");
  2. html {
  3. position: relative;
  4. min-height: 100%;
  5. }
  6. body {
  7. /* Margin bottom by footer height */
  8. margin-bottom: 60px;
  9. padding-top: 50px;
  10. }
  11. body,
  12. h1,
  13. h2,
  14. h3,
  15. h4,
  16. h5,
  17. h6 {
  18. font-family: "Lato","Helvetica Neue",Helvetica,Arial,sans-serif;
  19. }
  20. h1 {
  21. font-size: 42px;
  22. font-weight: 500;
  23. }
  24. h2 {
  25. font-weight: 300;
  26. font-size: 34px;
  27. }
  28. ul, ol {
  29. margin: 0 0 10px 20px;
  30. padding: 0;
  31. }
  32. /* -- sidebar --------------------------------------------------------------- */
  33. .page-sidebar {
  34. margin-top: 25px;
  35. border: 1px solid #cad7e1;
  36. background-color: #FFF;
  37. }
  38. .search > input[type="text"] {
  39. width: 165px;
  40. }
  41. /* dirty but works ¯\_(ツ)_/¯ */
  42. @media (max-width:1200px) and (min-width:768px) {
  43. .search > input[type="text"] {
  44. width: 100px;
  45. }
  46. }
  47. .page-sidebarwrapper {
  48. padding: 10px;
  49. line-height: 1.3;
  50. }
  51. .page-sidebarwrapper ul li a {
  52. display: block;
  53. padding: 3px 0;
  54. }
  55. a.reference {
  56. border: none;
  57. text-decoration: none;
  58. }
  59. a.reference:hover {
  60. text-decoration: underline;
  61. border: none;
  62. }
  63. a.reference:active {
  64. text-decoration: underline;
  65. border: none;
  66. }
  67. a:visited {
  68. text-decoration: none;
  69. }
  70. a:hover {
  71. text-decoration: underline;
  72. }
  73. a:active {
  74. text-decoration: underline;
  75. }
  76. img.screenshot {
  77. width: 100%;
  78. box-shadow: 0 4px 16px rgba(85, 85, 85, 0.8);
  79. border-radius: 6px;
  80. margin: 15px 0;
  81. }
  82. .page-content {
  83. padding-top: 0px;
  84. margin-top: 25px;
  85. margin-bottom: 20px;
  86. }
  87. .paper {
  88. background-color: #FFF;
  89. padding: 20px;
  90. border: 1px solid #cad7e1;
  91. position: relative;
  92. }
  93. .paper:before {
  94. content: "";
  95. position: absolute;
  96. top: -1px;
  97. right: -1px;
  98. border-width: 0 40px 40px 0;
  99. border-style: solid;
  100. border-color: #ccc #F6F9FC;
  101. z-index: 3;
  102. }
  103. footer {
  104. position: absolute;
  105. bottom: 0;
  106. width: 100%;
  107. /* Set the fixed height of the footer here */
  108. height: 60px;
  109. padding: 20px 0;
  110. background-color: #333333;
  111. }
  112. .copyright,
  113. .made-in,
  114. .powered-by {
  115. margin: 0;
  116. }
  117. pre {
  118. display: block;
  119. margin: 0 0 12px;
  120. line-height: 1.42857;
  121. word-break: break-all;
  122. word-wrap: break-word;
  123. color: #333;
  124. background-color: #f5f5f5;
  125. border: 1px solid #cad7e1;
  126. border-radius: 0;
  127. }