From 8fd7cc13cd771007284b4da3c0761582230e0db5 Mon Sep 17 00:00:00 2001
From: Simon Marsh <simon@sesa.me.uk>
Date: Fri, 11 Jan 2019 22:32:06 +0000
Subject: [PATCH] Include an additional css file to allow for site specific
 changes and style overrides

---
 static/css/local.css  | 5 +++++
 templates/layout.html | 3 ++-
 2 files changed, 7 insertions(+), 1 deletion(-)
 create mode 100644 static/css/local.css

diff --git a/static/css/local.css b/static/css/local.css
new file mode 100644
index 0000000..f8700f1
--- /dev/null
+++ b/static/css/local.css
@@ -0,0 +1,5 @@
+/*
+ * This file can be used to add local css customisations
+ *
+ */
+
diff --git a/templates/layout.html b/templates/layout.html
index f241b2a..2ae820a 100644
--- a/templates/layout.html
+++ b/templates/layout.html
@@ -7,8 +7,9 @@
 		<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='css/bootstrap-reboot.min.css') }}">
 		<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='css/bootstrap.min.css') }}">
 		<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='css/datatables.min.css') }}">
+		<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='css/local.css') }}">    
 	</head>
-	<body>
+	<body id="bird-lg">
 		<nav class="navbar navbar-expand-lg navbar-light" style="background-color: #e3f2fd;">
 			<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
 				<span class="navbar-toggler-icon"></span>