Skip to content
This repository was archived by the owner on Apr 29, 2022. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* primary: #15653B; */
/* primary-light/info: #47A71C */
/* secondary: #E88100 */
/* secondary: #f49928 */
/* secondary-light/warning: #FFCB96 */

.text-primary-light { color: #47A71C; }
Expand All @@ -27,7 +27,7 @@
}

#announcement {
background: #E88100;
background: #f49928;
/* full width minus scrollbar*/
padding: 32px;
box-shadow: 0px 0px 10px 0px rgba(217,122,10,0.75);
Expand All @@ -51,11 +51,11 @@
.text-underline { text-decoration: underline; }

.page { min-height: 500px; padding-bottom: 10em; padding-top: 4em}
#footer { background: #136F43; padding: 1em 0; color: #f8c48f}
#footer { background: #30b080; padding: 1em 0; color: #f8c48f}
#footer a { color: white; border-bottom: 1px solid rgba(255, 255, 255, 0.2); }
#footer ul { list-style-type: none; padding-left: 0}
#footer ul li { margin: .5em 0; }
#homepage_news { background: #136F43; padding: 2em 0; margin 0:}
#homepage_news { background: #30b080; padding: 2em 0; margin 0:}
#homepage_news a { color: #fff; text-decoration: underline;}
#homepage_news a:hover { color: #f8c48f; text-decoration: underline;}
.news-card { height: 300px; }
Expand Down Expand Up @@ -167,11 +167,11 @@ a.navbar-brand:hover{
.dropdown-item.active, .dropdown-item:active {
color: #fff;
text-decoration: none;
background-color: #136F43;
background-color: #30b080;
}

a.nav-link, a.navbar-brand {
color: #E88100;
color: #f49928;
}

/* Don't show carets in the dropdown menus */
Expand Down
4 changes: 2 additions & 2 deletions templates/conference/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
{% endblock meta %}

<link rel="stylesheet" href="{% static 'css/bootstrap.min.css' %}">
<link rel="stylesheet" href="{% static 'css/ep2019-bs-theme.css' %}">
<link rel="stylesheet" href="{% static 'css/ep2019-customisations.css' %}">
<link rel="stylesheet" href="{% static 'css/europython-bs-theme.css' %}">
<link rel="stylesheet" href="{% static 'css/europython-customizations.css' %}">
{% render_block "css" %} {# FOR DJANGO CMS #}

{% block morecss %}{% endblock %}
Expand Down