diff options
-rw-r--r-- | _plugins/gleps.rb | 1 | ||||
-rw-r--r-- | assets/css/glep.css | 11 |
2 files changed, 12 insertions, 0 deletions
diff --git a/_plugins/gleps.rb b/_plugins/gleps.rb index 3955c3a..137b08d 100644 --- a/_plugins/gleps.rb +++ b/_plugins/gleps.rb @@ -35,6 +35,7 @@ module Gentoo data['layout'] = 'glep' data['nav1'] = 'inside-gentoo' data['nav2'] = 'gleps' + data['extracss'] = ['glep.css'] lines = File.readlines(File.join(@base, GLEPGenerator::GLEP_DIR, name)) while not lines.empty? diff --git a/assets/css/glep.css b/assets/css/glep.css new file mode 100644 index 0000000..dff1496 --- /dev/null +++ b/assets/css/glep.css @@ -0,0 +1,11 @@ +.document .contents .topic-title { + font-size: 25px; +} + +.document .contents ul { + list-style-type: decimal; +} + +.document .label { + color: black; +} |