Add initial FOSSY branding

This commit is contained in:
Ben Sturmfels 2023-04-06 19:02:16 +10:00
parent c4766d9198
commit afdc8a8776
Signed by: bsturmfels
GPG key ID: 023C05E2C9C068F0
4 changed files with 10 additions and 6 deletions

View file

@ -125,7 +125,7 @@ Base Data
On initial creation and whenever you reset the database you must reload the
basic data. This data is stored in the /fixtures directory. You can load this with:
``./manage.py loaddata ./fixtures/{conference,proposal_base,sites,sitetree}.json``
``./manage.py loaddata ./fixtures/{conference,sites,sitetree,flatpages}.json``
And to load the base admin users:

View file

@ -1,11 +1,13 @@
{% load sitetree %}
{% load static %}
<nav class="navbar navbar-expand-lg navbar-light bg-dawn-sea">
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
<div class="container">
<a class="navbar-brand" href="/">
<img src="{% static 'img/eo2023.svg' %}" alt="Everything Open 2023 logo" height="56px">
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
<a class="washed-yellow hover-washed-yellow" href="/" style="text-decoration: none">
FOSSY 2023
</a>
</h2>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>

View file

@ -33,6 +33,7 @@
{% block styles %}
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous">
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
<link href="{% sass_src 'scss/app.scss' %}" rel="stylesheet" type="text/css" />
{% block extra_style %}{% endblock %}
{% endblock %}

View file

@ -8,6 +8,7 @@ $dawn-sea: rgb(0, 177, 197);
$blaze : rgb(250, 166, 26);
$dusk-sea : rgb(0, 113, 144);
$noon-sea : rgb(0, 141, 162);
$washed-yellow: #fffceb;
body {
@ -17,7 +18,6 @@ body {
h1, .h1,
h2, .h2,
h3, .h3 {
font-family: 'Montserrat', sans-serif;
font-weight: 300;
}
@ -53,6 +53,7 @@ h3, .h3 {
.navbar-nav .nav-link {
font-size: 1.2rem;
color: $washed-yellow !important;
}
.footer {