view wk.py @ 445:b8db406cc5e4

web: Fix UI bugs and do a few improvements. - Fix problems introduced by upgrading to the latest PureCSS. - Simplify CSS/JS includes into the page. - Add a bit of shadow to the body when the search field is focused/expanded.
author Ludovic Chabant <ludovic@chabant.com>
date Wed, 03 Jan 2018 00:58:09 -0800
parents 2dd7535045eb
children
line wrap: on
line source

#!/usr/local/bin/python
import sys
import logging
import colorama
from wikked.witch import ColoredFormatter, main


# Configure logging.
colorama.init()
root_logger = logging.getLogger()
handler = logging.StreamHandler(stream=sys.stdout)
handler.setFormatter(ColoredFormatter('%(message)s'))
root_logger.addHandler(handler)


if __name__ == "__main__":
    main()