Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
leon196 committed Aug 19, 2024
1 parent eb4e9d8 commit 97c6710
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ public
# macOS related files
.DS_Store

src/content
Binary file added src/media/eye-violet.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 8 additions & 4 deletions src/project.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<div class="container">
<div class="column frost">
<h2>{{ project.videast.name }}</h2>
<h3>artiste visuel</h3>
<h3 class="role">👁️</h3>

{% for paragraph in project.videast.bio %}
<p>{{ paragraph }}</p>
Expand All @@ -44,7 +44,7 @@ <h3>artiste visuel</h3>
<div class="column frost">

<h2>{{ project.musician.name }}</h2>
<h3>artiste musicien</h3>
<h3 class="role">👂</h3>

{% for paragraph in project.musician.bio %}
<p>{{ paragraph }}</p>
Expand All @@ -55,7 +55,7 @@ <h3>artiste musicien</h3>
{% endfor %}

{% for link in project.musician.links %}
<p class="button">
<p class="">
<a href={{ link.url }} target="_blank">{{ link.name }}</a>
</p>
{% endfor %}
Expand Down Expand Up @@ -130,6 +130,11 @@ <h3>artiste musicien</h3>
margin: 0;
}

.role
{
font-size: 40px;
}

.view
{
position: relative;
Expand All @@ -139,7 +144,6 @@ <h3>artiste musicien</h3>
.button
{
margin-top: 20px;
margin-left: -10px;
display: inline-block;
}

Expand Down

0 comments on commit 97c6710

Please sign in to comment.