summaryrefslogtreecommitdiff
path: root/local.css
blob: c50b49a2d19cbe10324d727cd8aa47dd08cfbe79 (plain)
  1. /* ikiwiki local style sheet */
  2. /* Add local styling here, instead of modifying style.css. */
  3. body {
  4. background-color: darkgrey;
  5. }
  6. #container {
  7. background-color: white;
  8. border-style: solid;
  9. border-width: 2px;
  10. margin: 10px 12%;
  11. }
  12. #sidebar {
  13. float: left;
  14. margin-left: 5%;
  15. width: 25%;
  16. padding: 0px;
  17. }
  18. #sidebar ul {
  19. margin: 0px;
  20. padding: 0px;
  21. }
  22. #sidebar ul li, #sidebar ul li a {
  23. line-height: 2;
  24. list-style-type: none;
  25. text-decoration: none;
  26. }
  27. #sidebar ul li {
  28. color: darkorange;
  29. }
  30. #sidebar ul li a {
  31. color: darkred;
  32. }
  33. #sidebar ul li a:hover {
  34. text-decoration: underline;
  35. }
  36. #content {
  37. float: right;
  38. width: 70%;
  39. line-height: 3ex;
  40. }