blob: c50b49a2d19cbe10324d727cd8aa47dd08cfbe79 (
plain)
- /* ikiwiki local style sheet */
- /* Add local styling here, instead of modifying style.css. */
- body {
- background-color: darkgrey;
- }
- #container {
- background-color: white;
- border-style: solid;
- border-width: 2px;
- margin: 10px 12%;
- }
- #sidebar {
- float: left;
- margin-left: 5%;
- width: 25%;
- padding: 0px;
- }
- #sidebar ul {
- margin: 0px;
- padding: 0px;
- }
- #sidebar ul li, #sidebar ul li a {
- line-height: 2;
- list-style-type: none;
- text-decoration: none;
- }
- #sidebar ul li {
- color: darkorange;
- }
- #sidebar ul li a {
- color: darkred;
- }
- #sidebar ul li a:hover {
- text-decoration: underline;
- }
- #content {
- float: right;
- width: 70%;
- line-height: 3ex;
- }
|