summaryrefslogtreecommitdiff
path: root/local.scss
blob: 391d5aea20cb0ca046045935af1b79a240d13729 (plain)
  1. @import "partials/base";
  2. @import "blueprint";
  3. @include blueprint-typography;
  4. h1 {
  5. font-size: 2.75em;
  6. }
  7. h1 {
  8. margin-top: 1em;
  9. margin-bottom: 1em;
  10. }
  11. h2,
  12. h3 {
  13. margin-top: 1em;
  14. margin-bottom: 0.1em;
  15. }
  16. h1,
  17. h2,
  18. h3,
  19. h4,
  20. h5,
  21. h6 {
  22. color: $accent;
  23. }
  24. a {
  25. font-weight: inherit;
  26. text-decoration: none;
  27. &:hover {
  28. text-decoration: underline;
  29. }
  30. }
  31. em {
  32. color: black;
  33. font-weight: bold;
  34. font-style: inherit;
  35. }
  36. img.icon {
  37. float: right;
  38. height: 20%;
  39. width: 20%;
  40. margin: 0 0 1em 1em;
  41. }
  42. /*
  43. body {
  44. background-color: transparent;
  45. background-image: url("pil.png");
  46. background-repeat: no-repeat;
  47. background-attachment: fixed;
  48. background-position: right bottom;
  49. margin: 0 0 100px 0;
  50. }
  51. */
  52. div.header span {
  53. display: none;
  54. }
  55. div.pageheader {
  56. background-color: $base;
  57. height: 110px;
  58. margin: 10px 0;
  59. }
  60. div.branding {
  61. display: block;
  62. height: 100px;
  63. background-image: url(butterfly.png);
  64. background-position: 45% 0;
  65. background-repeat: no-repeat;
  66. color: $link_color;
  67. }
  68. div#branding-logo {
  69. position: absolute;
  70. top: 75px;
  71. right: 3%;
  72. }
  73. div#branding-tagline {
  74. margin: 15px;
  75. }
  76. div#branding-tagline,
  77. div#branding-tagline a {
  78. font-weight: bold;
  79. font-size: 130%;
  80. }
  81. div.actions {
  82. z-index: 1;
  83. position: fixed;
  84. bottom: 2em;
  85. }
  86. div.topbar {
  87. float: right;
  88. background-color: $accent-light;
  89. margin: 0;
  90. padding: 0;
  91. text-align: center;
  92. font-weight: bold;
  93. width: 100%;
  94. }
  95. div.topbar ul {
  96. list-style-type: none;
  97. padding: 0;
  98. margin-top: 0;
  99. margin-bottom: 0;
  100. font-size: 1.2em;
  101. line-height: 2.5em;
  102. li {
  103. display: inline;
  104. color: $accent;
  105. margin: 0 4em 0 0;
  106. }
  107. }
  108. div.topbar a:hover,
  109. div.topbar span.selflink {
  110. color: $base;
  111. text-decoration: none;
  112. }
  113. form#searchform {
  114. display: block;
  115. right: 15px;
  116. margin: 0;
  117. position: absolute;
  118. top: 5px;
  119. }
  120. div#pagebody {
  121. float: left;
  122. width: 100%;
  123. }
  124. div#content {
  125. margin: 2% 25% 15% 25%;
  126. padding: 0;
  127. max-width: 55em;
  128. }
  129. div.sidebar {
  130. float: left;
  131. border: none;
  132. margin-top: 1em;
  133. margin-left: -100%;
  134. margin-right: 2%;
  135. width: 17%;
  136. padding: 0 0 0 1%;
  137. a {
  138. color: $accent;
  139. &:hover {
  140. color: $accent-light;
  141. text-decoration: underline;
  142. }
  143. }
  144. ul {
  145. margin: 0px;
  146. padding: 0px;
  147. font-weight: bold;
  148. li {
  149. line-height: 2;
  150. list-style-type: none;
  151. span.selflink {
  152. color: $accent-light;
  153. }
  154. }
  155. }
  156. }
  157. div.sidebar ul ul li {
  158. margin-left: 10%;
  159. }
  160. div.sidebar div.notebox {
  161. color: $base !important;
  162. background: #ff30ff;
  163. border: none;
  164. text-align: center;
  165. p {
  166. margin: 1.2em 0;
  167. }
  168. a {
  169. color: inherit;
  170. font-weight: bold;
  171. }
  172. }
  173. div.farbar {
  174. float: left;
  175. margin-top: 2%;
  176. margin-left: -23%;
  177. background: #99CCFF;
  178. width: 20%;
  179. max-width: 300px;
  180. padding: 1%;
  181. h2 {
  182. color: black;
  183. margin-top: 0;
  184. }
  185. }
  186. div.notebox {
  187. float: none;
  188. width: 100%;
  189. color: $accent !important;
  190. background: none;
  191. margin-left: 0;
  192. border: medium dashed $accent-light;
  193. text-align: center;
  194. }
  195. div.inlinepage {
  196. margin: 1em 0;
  197. border: 1px solid lightblue;
  198. border-style: solid;
  199. padding: 1em;
  200. overflow: visible;
  201. min-height: 12em;
  202. img.icon {
  203. height: 15%;
  204. width: 15%;
  205. }
  206. }
  207. div.inlinepage div.inlinepage {
  208. margin: 0;
  209. padding: 0;
  210. border-style: 0;
  211. border-width: 0;
  212. }
  213. div.inlinepage div.inlinepage div.inlineheader,
  214. div.inlinefooter {
  215. display: none;
  216. }
  217. div#footer{
  218. width:100%
  219. }
  220. div#pageinfo {
  221. border-top: 0;
  222. padding: 1em 1em 1em 20px;
  223. margin: 15px 0 0 0;
  224. color: $base;
  225. background-color: $accent-light;
  226. }
  227. div.tags {
  228. display: none;
  229. }
  230. div#backlinks {
  231. display: none;
  232. }
  233. div.pageheader div.actions ul {
  234. border-bottom: 0;
  235. padding: 0 0 0.7em 1em;
  236. }
  237. div.pagedate {
  238. margin-top: 0;
  239. }
  240. div.pagecopyright,
  241. div.pagecopyright p {
  242. margin-top: 0;
  243. margin-bottom: 1em;
  244. }