fimfic2epub/src/styles.js

16 lines
584 B
JavaScript
Raw Normal View History

2018-03-13 10:07:11 +13:00
const styleCss = require('./style/style')
const coverstyleCss = require('./style/coverstyle')
const titlestyleCss = require('./style/titlestyle')
const navstyleCss = require('./style/navstyle')
const iconsCss = require('./style/icons')
const paragraphsCss = {
spaced: require('./style/paragraphs-spaced'),
indented: require('./style/paragraphs-indented'),
indentedall: require('./style/paragraphs-indentedall')
}
paragraphsCss.both = paragraphsCss.indented + '\n' + paragraphsCss.spaced
2018-03-13 10:07:11 +13:00
export { styleCss, coverstyleCss, titlestyleCss, navstyleCss, iconsCss, paragraphsCss }