Skip to content

Commit

Permalink
add artwork from Tony Zhang & rework gallery layout
Browse files Browse the repository at this point in the history
  • Loading branch information
tobyxdd committed May 14, 2024
1 parent a7193c0 commit e68096d
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 6 deletions.
Binary file added docs/assets/artworks/tonyzhang.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 11 additions & 3 deletions docs/docs/Artworks.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,16 @@ hide:

## ✨ Meet Ayaha Hideri, the official anime mascot of Hysteria ⚡️

![Ayaha Hideri](../assets/artworks/hc_name.png)
### Official artworks

![Ayaha Hideri Q](../assets/artworks/hc_q.png)
<div class="artworks-gal">
<img src="/assets/artworks/hc_name.png">
<img src="/assets/artworks/hc_q.png">
<img src="/assets/artworks/ebiblue.png">
</div>

![Ayaha Hideri Dark](../assets/artworks/ebiblue.png)
### Fan artworks

<div class="artworks-gal">
<img src="/assets/artworks/tonyzhang.png">
</div>
14 changes: 11 additions & 3 deletions docs/docs/Artworks.zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,16 @@ hide:

## ✨ 彩羽ひでり - Hysteria 官方形象 ⚡️

![Ayaha Hideri](../assets/artworks/hc_name.png)
### 官方作品

![Ayaha Hideri Q](../assets/artworks/hc_q.png)
<div class="artworks-gal">
<img src="/assets/artworks/hc_name.png">
<img src="/assets/artworks/hc_q.png">
<img src="/assets/artworks/ebiblue.png">
</div>

![Ayaha Hideri Dark](../assets/artworks/ebiblue.png)
### 同人作品

<div class="artworks-gal">
<img src="/assets/artworks/tonyzhang.png">
</div>
22 changes: 22 additions & 0 deletions docs/stylesheets/extra.css
Original file line number Diff line number Diff line change
Expand Up @@ -70,3 +70,25 @@
#wiggle-logo {
animation: wiggle 2s infinite;
}

.artworks-gal {
display: grid;
gap: 20px;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
width: 100%;
margin: auto;
}

@media (min-width: 600px) {
.artworks-gal {
grid-template-columns: repeat(2, 1fr);
}
}

.artworks-gal img {
width: 100%;
height: auto;
display: block;
border-radius: 5px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
}

0 comments on commit e68096d

Please sign in to comment.