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