From 013dd94816c1185d4cd52f80e36a23bb67439984 Mon Sep 17 00:00:00 2001 From: Guilhem Moulin Date: Fri, 1 Apr 2016 11:41:48 +0200 Subject: Place custom CSS in its own file. --- static/css/fripost.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 static/css/fripost.css (limited to 'static/css/fripost.css') diff --git a/static/css/fripost.css b/static/css/fripost.css new file mode 100644 index 0000000..e87ac22 --- /dev/null +++ b/static/css/fripost.css @@ -0,0 +1,12 @@ +.navbar-fripost { + background-color: inherit; + border-bottom: black thin solid; + border-radius: 0; + margin-top: 1em +} +.navbar-fripost a { + color: black; +} +.navbar-fripost .navbar-toggle .icon-bar { + background-color: black; +} -- cgit v1.2.3 From 9f64810ba50a91340bb17ba3b1b62d8703641fdd Mon Sep 17 00:00:00 2001 From: Guilhem Moulin Date: Sun, 22 May 2016 03:44:32 +0200 Subject: Test markdown (pandoc) tables. --- static/css/fripost.css | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'static/css/fripost.css') diff --git a/static/css/fripost.css b/static/css/fripost.css index e87ac22..b7a235b 100644 --- a/static/css/fripost.css +++ b/static/css/fripost.css @@ -10,3 +10,13 @@ .navbar-fripost .navbar-toggle .icon-bar { background-color: black; } +table { + border-collapse: separate; + border-spacing: 1ex; +} +table > tr > td { + padding: 0 1ex; +} +table > tr > th { + padding: 0 1ex; +} -- cgit v1.2.3