WIP: Design #135

Closed
thomas wants to merge 64 commits from dev-1.0-118-design into develop-1.0
139 changed files with 7928 additions and 5539 deletions
Showing only changes of commit 7b28149d7e - Show all commits

0
radiocampus/__init__.py Normal file
View File

6
radiocampus/apps.py Normal file
View File

@ -0,0 +1,6 @@
from django.apps import AppConfig
class RadiocampusConfig(AppConfig):
default_auto_field = "django.db.models.BigAutoField"
name = "radiocampus"

View File

View File

@ -0,0 +1,16 @@
{% extends "aircox/base.html" %}
{% load static %}
{% block head_extra %}
{{ block.super }}
<style>
:root {
--heading-font-family: "campus_heading";
}
@font-face {
font-family: 'campus_heading';
src: url('{% static "radiocampus/fonts/CampusGroteskv12-Regular.otf" %}');
}
</style>
{% endblock %}