khguide/templates/pages/kh2/drops.html

60 lines
1.2 KiB
HTML
Raw Normal View History

2025-02-08 13:35:55 +02:00
{% extends "layouts/base.html" %}
{% import "macros/kh2/macros.html" as macros %}
{% block title %}KH2 - Drops{% endblock %}
{% block head %}
<style>
.category {
display: flex;
align-items: center;
}
.enemies {
display: flex;
.drop {
display: flex;
flex-direction: column;
text-align: center;
margin-right: 8px;
2025-02-08 19:09:16 +02:00
line-height: 30px;
font-size: 18px;
text-shadow: black 2px 2px;
transition: all 0.2s ease;
2025-02-08 13:35:55 +02:00
2025-02-08 19:09:16 +02:00
div {
background-repeat: no-repeat;
background-position: center;
background-size: contain;
width: 256px;
height: 256px;
background-size: 384px;
transition: all 0.2s ease;
2025-02-08 13:35:55 +02:00
}
2025-02-08 19:09:16 +02:00
/* &:hover { */
/* background-color: #333; */
/* box-shadow: 0 0 10px 1px rgba(0, 255, 0, 0.5); */
/* transform: scale(1.5); */
/**/
/* & > div { */
/* padding: 32px; */
/* margin: -32px; */
/* } */
/* } */
2025-02-08 13:35:55 +02:00
}
}
</style>
{% endblock %}
{% block content %}
{% for category in drops %}
{% call macros::drop("shard") %}
{% call macros::drop("stone") %}
{% call macros::drop("gem") %}
{% call macros::drop("crystal") %}
{% endfor %}
{% endblock %}