diff --git a/app.py b/app.py index 267f7e1..8b5f253 100644 --- a/app.py +++ b/app.py @@ -1,4 +1,4 @@ -from flask import Flask, render_template, g, abort, request, jsonify, send_from_directory +from flask import Flask, render_template, g, abort, request, jsonify, send_from_directory, url_for import sqlite3, os, csv from src.python.breed import get_breed_id, get_breeding_pairs, get_used_in_breeds diff --git a/static/style/output.css b/static/style/output.css index 66aab13..eb3bdb6 100644 --- a/static/style/output.css +++ b/static/style/output.css @@ -548,6 +548,10 @@ video { grid-column: span 1 / span 1; } +.float-left { + float: left; +} + .m-2 { margin: 0.5rem; } @@ -561,6 +565,10 @@ video { margin-right: auto; } +.mb-4 { + margin-bottom: 1rem; +} + .ml-4 { margin-left: 1rem; } @@ -577,10 +585,6 @@ video { margin-top: 1rem; } -.mb-4 { - margin-bottom: 1rem; -} - .block { display: block; } @@ -651,14 +655,19 @@ video { border-color: rgb(148 163 184 / var(--tw-border-opacity)); } +.bg-neutral-800 { + --tw-bg-opacity: 1; + background-color: rgb(38 38 38 / var(--tw-bg-opacity)); +} + .bg-slate-900 { --tw-bg-opacity: 1; background-color: rgb(15 23 42 / var(--tw-bg-opacity)); } -.bg-neutral-800 { +.bg-gray-900 { --tw-bg-opacity: 1; - background-color: rgb(38 38 38 / var(--tw-bg-opacity)); + background-color: rgb(17 24 39 / var(--tw-bg-opacity)); } .p-2 { @@ -700,6 +709,11 @@ video { line-height: 2rem; } +.text-3xl { + font-size: 1.875rem; + line-height: 2.25rem; +} + .text-lg { font-size: 1.125rem; line-height: 1.75rem; @@ -710,11 +724,6 @@ video { line-height: 1.75rem; } -.text-3xl { - font-size: 1.875rem; - line-height: 2.25rem; -} - .font-black { font-weight: 900; } @@ -727,6 +736,11 @@ video { line-height: 1.75rem; } +.text-blue-500 { + --tw-text-opacity: 1; + color: rgb(59 130 246 / var(--tw-text-opacity)); +} + .text-purple-400 { --tw-text-opacity: 1; color: rgb(192 132 252 / var(--tw-text-opacity)); diff --git a/templates/app.html b/templates/app.html index d1ab5d3..617a550 100644 --- a/templates/app.html +++ b/templates/app.html @@ -2,50 +2,59 @@