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