summaryrefslogtreecommitdiff
path: root/monochrome/style.scss
blob: e7de67bcd519181a18d0542921f45645322ab40c (plain)
  1. @charset "UTF-8";
  2. @import url(http://fonts.googleapis.com/css?family=Lato&v2);
  3. @import "../default/style.scss";
  4. /*
  5. * monochrome - ikiwiki theme © Jon Dowland 2012
  6. * based on ikiwiki style.css and bits from jmtd.net at the time
  7. * License: GPL-2+
  8. */
  9. body {
  10. margin-left: auto;
  11. margin-right: auto;
  12. width: 48em;
  13. background: url(gradient.png) repeat-x white 0px -16px;
  14. margin-top: 48px;
  15. /* height of gradient.png that we want to see */
  16. color: #555;
  17. font-family: 'Lato', sans-serif;
  18. }
  19. .header {
  20. margin-bottom: 0.5em;
  21. }
  22. .pageheader .actions ul {
  23. border-bottom: 2px solid #c00040;
  24. }
  25. #pageinfo {
  26. border-top: 2px solid #c00040;
  27. text-align: center;
  28. color: #aaa;
  29. }
  30. /*
  31. * css3 external links stuff
  32. * thanks to <http://www.kryogenix.org/days/2002/08/30/external>
  33. */
  34. #content a[href^="http:"]:after,
  35. #content a[href^="https:"]:after,
  36. #enclosure a[href^="http:"]:after,
  37. #enclosure a[href^="https:"]:after {
  38. content: "↗";
  39. }
  40. /* you will want to replicate this for your own domain in local.css */
  41. #content a[href^="http://localhost"]:after,
  42. #content a[href^="http://ikiwiki.info"]:after,
  43. #enclosure a[href^="http://localhost"]:after,
  44. #enclosure a[href^="http://ikiwiki.info"]:after {
  45. content: none;
  46. }
  47. /* colouring */
  48. a:link {
  49. color: #c00040;
  50. font-weight: bold;
  51. text-decoration: none;
  52. }
  53. a:hover {
  54. color: #f01070;
  55. text-decoration: underline;
  56. }
  57. a:active {
  58. color: #c00040;
  59. }
  60. a:visited {
  61. color: #c08080;
  62. font-weight: normal;
  63. font-style: italic;
  64. }
  65. hr {
  66. border: none;
  67. border-top: 2px solid #c00040;
  68. clear: both;
  69. }