Remove card animations and adjust layout for team member sections
Removes hover effects and animations from member cards, updates CSS for the 'hr' and 'member-card' elements, and repositions the descriptive text for mentor and team sections in `contributors.html`. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 5e584ab0-c340-4432-97ef-1972582b60e9 Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Event-Id: c9bfbf59-6669-4093-a6ef-d73e67cb3ca8 Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/d0a1d46d-d203-4308-bc6a-312ac7c0243b/5e584ab0-c340-4432-97ef-1972582b60e9/iGbSEkT
This commit is contained in:
@@ -36,38 +36,37 @@
|
||||
<br>
|
||||
<h1 class="heading"><span class="emoji sponsors" id="team">Our mentors and coaches</span></h1>
|
||||
<hr>
|
||||
<p class="info">❤️ meet our amazing coach and mentors! ❤️</p>
|
||||
<div class="team-info">
|
||||
<div class="content-container">
|
||||
<p class="info">❤️ meet our amazing coach and mentors! ❤️</p>
|
||||
<div class="members-container">
|
||||
{% for mentor in mentors %}
|
||||
<div class="member-card">
|
||||
{% if mentor.image_path %}
|
||||
<img class="member-image" src="{{ url_for('static', filename=mentor.image_path) }}">
|
||||
{% endif %}
|
||||
<h2 class="member-name">{{ mentor.name }}</h2>
|
||||
<p class="member-role">{{ mentor.role }}</p>
|
||||
</div>
|
||||
{% endfor %}
|
||||
{% for mentor in mentors %}
|
||||
<div class="member-card">
|
||||
{% if mentor.image_path %}
|
||||
<img class="member-image" src="{{ url_for('static', filename=mentor.image_path) }}">
|
||||
{% endif %}
|
||||
<h2 class="member-name">{{ mentor.name }}</h2>
|
||||
<p class="member-role">{{ mentor.role }}</p>
|
||||
</div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<h1 class="heading"><span class="emoji team" id="team">Our team</span></h1>
|
||||
<hr>
|
||||
<p class="info">⭐ meet our amazing team! ⭐</p>
|
||||
<div class="team-info">
|
||||
<div class="content-container">
|
||||
<p class="info">⭐ meet our amazing team! ⭐</p>
|
||||
|
||||
<div class="members-container">
|
||||
{% for member in members %}
|
||||
<div class="member-card">
|
||||
{% if member.image_path %}
|
||||
<img class="member-image" src="{{ url_for('static', filename=member.image_path) }}">
|
||||
{% endif %}
|
||||
<h2 class="member-name">{{ member.name }}</h2>
|
||||
<p class="member-role">{{ member.role }}</p>
|
||||
</div>
|
||||
{% endfor %}
|
||||
{% for member in members %}
|
||||
<div class="member-card">
|
||||
{% if member.image_path %}
|
||||
<img class="member-image" src="{{ url_for('static', filename=member.image_path) }}">
|
||||
{% endif %}
|
||||
<h2 class="member-name">{{ member.name }}</h2>
|
||||
<p class="member-role">{{ member.role }}</p>
|
||||
</div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user