summaryrefslogtreecommitdiff
path: root/local.scss
blob: e46d7cc1fceadb2adbc5207e48910ea165e04ed7 (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. h2 {
  25. font-size:1.6em;
  26. }
  27. a {
  28. font-weight: inherit;
  29. text-decoration: none;
  30. }
  31. a:hover {
  32. text-decoration: underline;
  33. }
  34. em {
  35. color: black;
  36. font-weight: bold;
  37. font-style: inherit;
  38. }
  39. img.icon {
  40. float: right;
  41. height: 20%;
  42. width: 20%;
  43. margin-right: -30%;
  44. }
  45. body {
  46. /* background-color: transparent;
  47. background-image: url("pil.png");
  48. background-repeat: no-repeat;
  49. background-attachment: fixed;
  50. background-position: right bottom;
  51. margin: 0 0 100px 0;*/
  52. }
  53. div.header span {
  54. display: none;
  55. }
  56. div.pageheader {
  57. background-color: $base;
  58. height: 110px;
  59. margin: 10px 0;
  60. }
  61. div#branding {
  62. display: block;
  63. height: 100px;
  64. background-image: url(butterfly.png);
  65. background-position: 45% 0;
  66. background-repeat: no-repeat;
  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. }
  103. div.topbar ul li {
  104. display: inline;
  105. color: $accent;
  106. margin: 0 4em 0 0;
  107. }
  108. div.topbar a:hover {
  109. color: $base;
  110. }
  111. div.topbar span.selflink {
  112. color: $base;
  113. }
  114. form#searchform {
  115. display: block;
  116. right: 15px;
  117. margin: 0;
  118. position: absolute;
  119. top: 5px;
  120. }
  121. div#pagebody {
  122. float: left;
  123. width: 100%;
  124. }
  125. div#content {
  126. margin: 2% 25% 15% 25%;
  127. padding: 0;
  128. max-width: 55em;
  129. }
  130. div.sidebar {
  131. float: left;
  132. border: none;
  133. margin-top: 1em;
  134. margin-left: -100%;
  135. margin-right: 2%;
  136. width: 17%;
  137. padding: 0 0 0 1%;
  138. }
  139. div.sidebar ul {
  140. margin: 0px;
  141. padding: 0px;
  142. font-weight: bold;
  143. }
  144. div.sidebar ul li {
  145. line-height: 2;
  146. list-style-type: none;
  147. }
  148. div.sidebar ul li span.selflink {
  149. color: $link_color;
  150. }
  151. div.sidebar ul ul li {
  152. margin-left: 10%;
  153. }
  154. div.sidebar a {
  155. color: black;
  156. }
  157. div.sidebar A:hover {
  158. text-decoration: underline;
  159. }
  160. div.sidebar div.notebox {
  161. color: $base !important;
  162. background: #ff30ff;
  163. border: none;
  164. text-align: center;
  165. }
  166. div.sidebar div.notebox p {
  167. margin: 1.2em 0;
  168. }
  169. div.sidebar div.notebox a {
  170. color: inherit;
  171. font-weight: bold;
  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. }
  182. div.farbar h2 {
  183. color: black;
  184. margin-top: 0;
  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: none none solid;
  199. padding: 1em 0;
  200. overflow: visible;
  201. min-height: 12em;
  202. }
  203. div.inlinepage div.inlinepage {
  204. margin: 0;
  205. padding: 0;
  206. border-style: 0;
  207. border-width: 0;
  208. }
  209. div.inlinepage img.icon {
  210. margin-right: 0;
  211. padding: 1%;
  212. height: 15%;
  213. width: 15%;
  214. }
  215. div.inlinepage div.inlinepage div.inlineheader,
  216. div.inlinefooter {
  217. display: none;
  218. }
  219. div#footer{
  220. width:100%
  221. }
  222. div#pageinfo {
  223. position: fixed;
  224. bottom: 0;
  225. width: 100%;
  226. border-top: 0;
  227. padding: 1em 1em 1em 20px;
  228. margin: 15px 0 0 0;
  229. color: $base;
  230. background-color: $accent-light;
  231. }
  232. div.tags {
  233. display: none;
  234. }
  235. div#backlinks {
  236. display: none;
  237. }
  238. div.pageheader div.actions ul {
  239. border-bottom: 0;
  240. padding: 0 0 0.7em 1em;
  241. }
  242. div.pagedate {
  243. margin-top: 0;
  244. }
  245. div.pagecopyright,
  246. div.pagecopyright p {
  247. margin-top: 0;
  248. margin-bottom: 1em;
  249. }