Skip to content

Commit

Permalink
color for the people (and everything else too)
Browse files Browse the repository at this point in the history
  • Loading branch information
csae8092 committed Nov 18, 2023
1 parent ae9f0fa commit 52c0ca2
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 0 deletions.
31 changes: 31 additions & 0 deletions dumper/templates/dumper/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,38 @@ <h2>Orte</h2>
<h2>Werke</h2>
<p>Some representative placeholder content for the three columns of text below the carousel. This is the first column.</p>
</div>
</div>

<div class="row">
<div class="col-lg-4">
<p class="text-center">
<a class="icon-link" href="{% url 'apis:apis_entities:generic_entities_list' 'event' %}">
<i class="bi bi-calendar3 apis-event big-icons"></i>
</a>
</p>
<h2>Ereignisse</h2>
<p>Some representative placeholder content for the three columns of text below the carousel. This is the first column.</p>
</div>

<div class="col-lg-4">
<p class="text-center">
<a class="icon-link" href="{% url 'apis:apis_entities:generic_entities_list' 'institution' %}">
<i class="bi bi-building-gear apis-institution big-icons"></i>
</a>
</p>
<h2>Institutionen</h2>
<p>Some representative placeholder content for the three columns of text below the carousel. This is the first column.</p>
</div>

<div class="col-lg-4">
<p class="text-center">
<a class="icon-link" href="persons.html">
<i class="bi bi-link-45deg apis-uri big-icons"></i>
</a>
</p>
<h2>Uris</h2>
<p>Some representative placeholder content for the three columns of text below the carousel. This is the first column.</p>
</div>
</div>
</div>

Expand Down
15 changes: 15 additions & 0 deletions static/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
--person: #ad3f58;
--place: #f5db9e;
--work: #668cb9;
--event: #5c8c7c;
--institution: #c57f7f;
--uri: #e7e1bf;
}
/* COLORS FOR ENTITIES */

Expand All @@ -17,6 +20,18 @@
color: var(--work)
}

.apis-event {
color: var(--event)
}

.apis-institution {
color: var(--institution)
}

.apis-uri {
color: var(--uri)
}

.big-icons {
font-size: 120px;
}
Expand Down

0 comments on commit 52c0ca2

Please sign in to comment.