I would like to customize layout of a gollum wiki by:
I know that I am able to have a custom.css
file in my repo that should load when I use the --css
flag. However, I have no idea what to put in the file and looking at the css files in gollum repo has not proved helpful.
After some debugging I managed to figure out a way to get what I needed.
custom.css
:.has-rightbar #wiki-sidebar {
float: left;
}
#wiki-body {
float: right;
clear: right;
}
.has-sidebar #wiki-body {
width: 77%;
}
#wiki-wrapper {
max-width: 90%;
}
#wiki-sidebar {
width: 17%;
}