Add initial FOSSY branding
This commit is contained in:
parent
c4766d9198
commit
afdc8a8776
4 changed files with 10 additions and 6 deletions
|
@ -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:
|
||||
|
||||
|
|
|
@ -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">
|
||||
</a>
|
||||
<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>
|
||||
|
|
|
@ -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 %}
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue