Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 4 additions & 37 deletions ether/static/css/project.css
Original file line number Diff line number Diff line change
Expand Up @@ -478,37 +478,12 @@ h4 {
font-size: 1.05rem;
}

/* Visual panels */

.image-section {
padding: 0 0 var(--space-8);
}

.visual-frame {
margin: 0;
}

.visual-frame img {
width: 100%;
aspect-ratio: 16 / 9;
object-fit: cover;
background: var(--color-panel);
border-radius: var(--radius-sm);
}

.visual-frame figcaption {
margin-top: var(--space-3);
color: var(--color-muted);
font-size: 0.84rem;
}

.info-section {
padding-top: var(--space-9);
padding-bottom: 184px;
}

.abstract-field,
.visual-frame-muted {
.abstract-field {
position: relative;
min-height: 520px;
overflow: hidden;
Expand All @@ -521,9 +496,7 @@ h4 {
}

.abstract-field::before,
.abstract-field::after,
.visual-frame-muted::before,
.visual-frame-muted::after {
.abstract-field::after {
content: "";
position: absolute;
inset: 12%;
Expand All @@ -532,8 +505,7 @@ h4 {
transform: rotate(-8deg);
}

.abstract-field::after,
.visual-frame-muted::after {
.abstract-field::after {
inset: 22% 8%;
transform: rotate(12deg);
}
Expand Down Expand Up @@ -1076,15 +1048,10 @@ h4 {
font-size: 1.02rem;
}

.abstract-field,
.visual-frame-muted {
.abstract-field {
min-height: 320px;
}

.image-section {
padding-bottom: var(--space-6);
}

.statement-section,
.info-section {
padding-top: var(--space-8);
Expand Down
Binary file removed ether/static/images/ether-editorial-visual.png
Binary file not shown.
Binary file removed ether/static/images/ether-hero.png
Binary file not shown.
13 changes: 0 additions & 13 deletions ether/templates/pages/home.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
{% extends "base.html" %}

{% load static %}

{% block title %}
Ether合同会社 | Music, Software and Web3
{% endblock title %}
Expand All @@ -23,17 +21,6 @@ <h1 id="hero-heading">
</p>
</div>
</section>
<section class="image-section" aria-label="Etherの編集ビジュアル">
<div class="container">
<figure class="visual-frame" data-reveal>
<img src="{% static 'images/ether-editorial-visual.png' %}"
width="1680"
height="945"
alt="夜の東京を背景に、レコード、音の波形、透明なデータブロックが並ぶ暗色の編集ビジュアル" />
<figcaption>Culture, software and decentralized systems</figcaption>
</figure>
</div>
</section>
<section class="section section-feature" aria-labelledby="vision-heading">
<div class="container container-reading">
<div class="story-block" data-reveal>
Expand Down
1 change: 0 additions & 1 deletion scripts/export_static_site.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,6 @@ def validate_output(rendered_html: list[str]) -> None:
Path("contact/index.html"),
Path("static/css/project.css"),
Path("static/js/project.js"),
Path("static/images/ether-hero.png"),
Path("static/images/favicons/favicon.ico"),
]
for relative_path in required_files:
Expand Down
Loading