diff --git a/bam/static/bg.jpg b/bam/static/bg.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5bd863ef7583b533b546d2b9f2e6e63b3776acfb Binary files /dev/null and b/bam/static/bg.jpg differ diff --git a/bam/static/dash.css b/bam/static/dash.css index d47b5cea3be85c1b4bc6c93b76d8d0153af4ca4a..35de46478dff7539f6ebb812f84e1c3b39853ed6 100644 --- a/bam/static/dash.css +++ b/bam/static/dash.css @@ -1,4 +1,3 @@ -@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap"); html, body { margin: 0; diff --git a/bam/static/logo.png b/bam/static/logo.png new file mode 100644 index 0000000000000000000000000000000000000000..3029849232cb39eba79ce2a2fda87af592e835b6 Binary files /dev/null and b/bam/static/logo.png differ diff --git a/bam/static/outlayout.css b/bam/static/outlayout.css index ad994547ce83a1a74108da840097bf6ba1950dd5..5e8c2f41e133cf1c89c7ceeadc85ba2163049b13 100644 --- a/bam/static/outlayout.css +++ b/bam/static/outlayout.css @@ -1,4 +1,3 @@ -@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap"); html, body { margin: 0; @@ -18,7 +17,7 @@ body { } body { - background-image: url("https://i.imgur.com/4LLrhbS.jpg"); + background-image: url("bg.jpg"); background-position: center; background-repeat: no-repeat; background-size: cover; diff --git a/bam/templates/dash.html b/bam/templates/dash.html index a2abedc8e9d3f217a6d39ddab50ce97a1c79b616..009de39c056c0c1cb3abb221038f7b5f33bef93c 100644 --- a/bam/templates/dash.html +++ b/bam/templates/dash.html @@ -8,6 +8,10 @@ {% else %} <title>BAM</title> {% endif %} + <link + rel="stylesheet" + href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap" + /> <link rel="stylesheet" href="{{ url_for('static', filename='dash.css') }}" @@ -19,7 +23,7 @@ <div class="navbar"> <div class="logo"> <a href="{{ url_for('home') }}"> - <img src="https://i.imgur.com/t2ZlJ06.png" /> + <img src="{{ url_for('static', filename='logo.png') }}" /> </a> </div> <a diff --git a/bam/templates/outlayout.html b/bam/templates/outlayout.html index 99a5aa7cffbeac91a620b0f4e35ed22982f4cc8b..680fda595ff5b93778d47c80c6233addc4f8f56c 100644 --- a/bam/templates/outlayout.html +++ b/bam/templates/outlayout.html @@ -8,6 +8,10 @@ {% else %} <title>BAM</title> {% endif %} + <link + rel="stylesheet" + href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap" + /> <link rel="stylesheet" href="{{ url_for('static', filename='outlayout.css') }}" @@ -19,7 +23,7 @@ <div class="navbar"> <div class="logo"> <a href="{{ url_for('home') }}"> - <img src="https://i.imgur.com/t2ZlJ06.png" /> + <img src="{{ url_for('static', filename='logo.png') }}" /> </a> </div> <div class="space"></div>