add pico.css

This commit is contained in:
jpt 2025-04-20 01:44:34 -05:00
parent c846da75a8
commit a42b281b41
3 changed files with 22 additions and 1 deletions

4
static/css/pico.min.css vendored Normal file

File diff suppressed because one or more lines are too long

View File

@ -1 +1 @@
{% extends "allauth/layouts/entrance.html" %}
{% extends "base.html" %}

17
templates/base.html Normal file
View File

@ -0,0 +1,17 @@
{% load static %}
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="color-scheme" content="light dark">
<link rel="stylesheet" href="{% static 'css/pico.min.css' %}">
<title>{% block title %}{% endblock %}</title>
</head>
<body>
<main class="container">
{% block content %}
{% endblock %}
</main>
</body>
</html>