Refactor homepage layout and styles

- Updated home_banner.html to increase image width from 1200 to 1280 pixels for better resolution.
- Modified home.css to remove unnecessary styles and added a new rule for .home-banner img to ensure responsive images.
- Adjusted horizontal_list.css to increase gap between items from 24px to 30px and removed padding for a cleaner layout.
- Changed news_list.css to update grid layout for news articles, including new flex properties for content alignment and added a gradient overlay for better readability.
- Refined home_page.html to use a full-bleed class for the hero band and simplified the structure by removing unnecessary divs.
- Enhanced news_list.html to improve the structure of the first news article display, including better content organization and styling.
- Updated mysite.css to refine container styles and improve header and footer layouts, ensuring better responsiveness and visual consistency.
- Adjusted base.html to wrap content in a main tag for better semantic structure.
- Improved footer.html to streamline social media links and added a new section for footer navigation links.
- Enhanced header.html to ensure consistent styling and layout with the new site container.
This commit is contained in:
Warren Chen 2026-01-16 11:47:12 +09:00
parent fcfaba52c0
commit cdd9c10db0
10 changed files with 192 additions and 128 deletions

View File

@ -5,7 +5,7 @@
<div class="home-banner"> <div class="home-banner">
{% if banner.link_url %} {% if banner.link_url %}
<a class="home-banner__link" href="{{ banner.link_url }}"> <a class="home-banner__link" href="{{ banner.link_url }}">
{% image banner.image width-1200 alt=banner.title %} {% image banner.image width-1280 alt=banner.title %}
{% if banner.title %} {% if banner.title %}
<span class="home-banner__title">{{ banner.title }}</span> <span class="home-banner__title">{{ banner.title }}</span>
{% endif %} {% endif %}
@ -14,7 +14,7 @@
{% endif %} {% endif %}
</a> </a>
{% else %} {% else %}
{% image banner.image width-1200 alt=banner.title %} {% image banner.image width-1280 alt=banner.title %}
{% endif %} {% endif %}
</div> </div>
{% endif %} {% endif %}

View File

@ -1,9 +1,3 @@
.home-page {
max-width: 890px;
margin: 0 auto;
padding: 0 16px;
}
.home-hero-band { .home-hero-band {
background-color: #0e1b42; background-color: #0e1b42;
color: #ffffff; color: #ffffff;
@ -19,12 +13,6 @@
color: #ffffff; color: #ffffff;
} }
.template-homepage .header-inner {
max-width: 1028px;
margin: 0 auto;
/* padding: 0 16px; */
}
.template-homepage .main-menu-link { .template-homepage .main-menu-link {
color: #ffffff; color: #ffffff;
} }
@ -42,6 +30,12 @@
color: #ffffff; color: #ffffff;
} }
.home-banner img {
width: 100%;
height: auto;
display: block;
}
.list-title { .list-title {
align-items: center; align-items: center;
margin: 10px 0; margin: 10px 0;

View File

@ -45,12 +45,12 @@
.horizontal-list { .horizontal-list {
display: flex; display: flex;
align-items: stretch; align-items: stretch;
gap: 24px; gap: 30px;
overflow-x: auto; overflow-x: auto;
scroll-snap-type: x mandatory; scroll-snap-type: x mandatory;
list-style: none; list-style: none;
margin: 24px 0; margin: 24px 0;
padding: 12px 48px; padding: 0;
scrollbar-width: none; scrollbar-width: none;
-ms-overflow-style: none; -ms-overflow-style: none;
} }

View File

@ -5,13 +5,11 @@
.news-hero { .news-hero {
display: grid; display: grid;
grid-template-columns: 1fr 1fr; grid-template-columns: 480px 1fr;
grid-template-areas: grid-template-areas:
"header header" "header header"
"image meta" "image content";
"image intro" gap: 16px 40px;
"image body";
gap: 16px;
align-items: start; align-items: start;
} }
@ -47,6 +45,7 @@
position: relative; position: relative;
border-radius: 10px; border-radius: 10px;
overflow: hidden; overflow: hidden;
width: 480px;
} }
.news-hero .first-news-image::after { .news-hero .first-news-image::after {
@ -69,19 +68,47 @@
border-radius: 10px; border-radius: 10px;
} }
.news-hero .first-news-content {
grid-area: content;
display: flex;
flex-direction: column;
gap: 16px;
max-height: 293px;
}
.news-hero .fist-news-date,
.news-hero .first-news-intro {
flex: 0 0 auto;
}
.news-hero .fist-news-date { .news-hero .fist-news-date {
grid-area: meta;
color: rgba(255, 255, 255, 0.4); color: rgba(255, 255, 255, 0.4);
} }
.news-hero .first-news-intro { .news-hero .first-news-intro {
grid-area: intro;
font-size: 20px; font-size: 20px;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
} }
.news-hero .first-news-body { .news-hero .first-news-body {
grid-area: body;
font: 12px; font: 12px;
flex: 1 1 auto;
overflow: hidden;
position: relative;
}
.news-hero .first-news-body::after {
content: "";
position: absolute;
left: 0;
right: 0;
bottom: 0;
height: 100px;
background: linear-gradient(to bottom, rgba(14, 27, 66, 0), #0e1b42);
pointer-events: none;
} }
.news-list-items { .news-list-items {
@ -92,7 +119,7 @@
margin-top: 24px; margin-top: 24px;
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;
gap: 30px; gap: 28px;
} }
.news-list-items a { .news-list-items a {
@ -167,9 +194,7 @@
"title" "title"
"image" "image"
"head" "head"
"meta" "content";
"intro"
"body";
} }
.news-hero .news-hero-header { .news-hero .news-hero-header {

View File

@ -8,8 +8,8 @@
<link rel="stylesheet" type="text/css" href="{% static 'css/horizontal_list.css' %}"> <link rel="stylesheet" type="text/css" href="{% static 'css/horizontal_list.css' %}">
{% endblock %} {% endblock %}
{% block content %} {% block content %}
<div class="home-hero-band"> <div class="home-hero-band full-bleed">
<div class="home-page"> <div class="site-container">
<div class="home-hero"> <div class="home-hero">
{% include "base/includes/home_banner.html" %} {% include "base/includes/home_banner.html" %}
{% with top_section=sections.top_section %} {% with top_section=sections.top_section %}
@ -21,12 +21,10 @@
</div> </div>
</div> </div>
<div class="home-page">
{% for section in sections.category_sections %} {% for section in sections.category_sections %}
{% cycle 'section-b' 'section-o' as section_color silent %} {% cycle 'section-b' 'section-o' as section_color silent %}
{% include "home/includes/category_session.html" with section=section section_color=section_color %} {% include "home/includes/category_session.html" with section=section section_color=section_color %}
{% endfor %} {% endfor %}
</div>
{% endblock content %} {% endblock content %}
{% block extra_js %} {% block extra_js %}
<script type="text/javascript" src="{% static 'js/block_list.js' %}"></script> <script type="text/javascript" src="{% static 'js/block_list.js' %}"></script>

View File

@ -22,9 +22,6 @@
</div> </div>
{% with first_article=section.items|first %} {% with first_article=section.items|first %}
{% if first_article %} {% if first_article %}
<div class="fist-news-date">
<span>{{ first_article.date|date:"Y.m.d" }}</span>
</div>
<div class="first-news-image"> <div class="first-news-image">
<a href="{{ first_article.url }}"> <a href="{{ first_article.url }}">
{% if first_article.cover_image %} {% if first_article.cover_image %}
@ -35,13 +32,18 @@
{% endif %} {% endif %}
</a> </a>
</div> </div>
<div class="first-news-content">
<div class="fist-news-date">
<span>{{ first_article.date|date:"Y.m.d" }}</span>
</div>
{% if first_article.intro %} {% if first_article.intro %}
<div class="first-news-intro"> <div class="first-news-intro">
<span>{{ first_article.intro }}</span> <span>{{ first_article.intro }}</span>
</div> </div>
{% endif %} {% endif %}
<div class="first-news-body"> <div class="first-news-body">
<span>{{ first_article.body_search_text|truncatechars:120 }}</span> <span>{{ first_article.body_search_text|truncatechars:320 }}</span>
</div>
</div> </div>
{% else %} {% else %}
<span class="empty">目前沒有文章</span> <span class="empty">目前沒有文章</span>

View File

@ -2,6 +2,17 @@ a {
text-decoration: none; text-decoration: none;
} }
.site-container {
max-width: 890px;
margin: 0 auto;
padding: 0 16px;
}
.full-bleed {
width: 100vw;
margin-left: calc(50% - 50vw);
}
.site-header { .site-header {
position: relative; position: relative;
z-index: 10; z-index: 10;
@ -11,7 +22,7 @@ a {
display: flex; display: flex;
align-items: center; align-items: center;
gap: 24px; gap: 24px;
padding: 30px 105px; padding: 30px 0;
} }
.logo { .logo {
@ -36,7 +47,8 @@ a {
} }
.main-nav { .main-nav {
flex: 1; flex: 0 1 auto;
margin-left: 16px;
} }
.main-menu { .main-menu {
@ -73,12 +85,17 @@ a {
left: 50%; left: 50%;
transform: translateX(-50%); transform: translateX(-50%);
margin-top: -2px; margin-top: -2px;
min-width: 220px; margin-left: 20px;
/* min-width: 220px; */
list-style: none; list-style: none;
padding: 14px 0; padding-inline-start: 0;
background: #fff; /* padding: 14px 0; */
border-radius: 16px; /* background: #fff; */
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18); /* border-radius: 16px; */
/* box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18); */
border-bottom: #ffffff;
border-style: solid;
border-width: 0 0 1px 0;
opacity: 0; opacity: 0;
visibility: hidden; visibility: hidden;
pointer-events: none; pointer-events: none;
@ -93,10 +110,23 @@ a {
transform: translateX(-50%) translateY(2px); transform: translateX(-50%) translateY(2px);
} }
.submenu-item {
min-width: 94px;
height: 36px;
/* padding: 8px 16px; */
border: #ffffff;
border-style: solid;
border-width: 1px 1px 0 1px;
background-color: #0e1b42;
/* line-height: 36px; */
/* vertical-align: middle; */
/* align-items: center; */
}
.submenu-item a { .submenu-item a {
display: block; display: block;
font-variation-settings: normal; font-variation-settings: normal;
color: #0e1b42; color: #ffffff;
font-family: "Inter:Regular", "Noto Sans JP:Regular", sans-serif; font-family: "Inter:Regular", "Noto Sans JP:Regular", sans-serif;
word-break: break-word; word-break: break-word;
font-weight: 400; font-weight: 400;
@ -105,7 +135,7 @@ a {
letter-spacing: 0px; letter-spacing: 0px;
line-height: normal; line-height: normal;
--letter-spacing: 0px; --letter-spacing: 0px;
padding: 10px 18px; padding: 8px 16px;
} }
.submenu-item a:hover, .submenu-item a:hover,
@ -117,9 +147,13 @@ a {
.header-search .search-input { .header-search .search-input {
display: flex; display: flex;
align-items: center; align-items: center;
border-style: solid; /* border-style: solid; */
/* border-color: #0e1b42; */ /* border-color: #0e1b42; */
border-width: 1px; /* border-width: 1px; */
}
.header-search {
margin-left: auto;
} }
.header-search .search-icon { .header-search .search-icon {
@ -136,16 +170,16 @@ a {
} }
.header-search .search-icon svg { .header-search .search-icon svg {
width: 20px; width: 28px;
height: 20px; height: 28px;
} }
.header-search input[type="search"] { .header-search input[type="search"] {
border: 0; border: 0;
background: transparent; background: transparent;
outline: none; outline: none;
color: #fff; /* color: rgba(0, 0, 0, 0.3); */
width: 160px; /* 依需要調 */ width: 181px; /* 依需要調 */
} }
@layer figreset { @layer figreset {
@ -179,6 +213,9 @@ footer {
color: #ffffff; color: #ffffff;
padding: 24px 0; padding: 24px 0;
font-size: 14px; font-size: 14px;
}
.footer-inner {
display: flex; display: flex;
justify-content: center; justify-content: center;
gap: 48px; gap: 48px;
@ -256,7 +293,7 @@ footer .footer-sections {
} }
@media (max-width: 768px) { @media (max-width: 768px) {
footer { .footer-inner {
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
text-align: center; text-align: center;

View File

@ -36,7 +36,11 @@
{% include "includes/header.html" %} {% include "includes/header.html" %}
<main class="site-main">
<div class="site-container">
{% block content %}{% endblock %} {% block content %}{% endblock %}
</div>
</main>
{% include "includes/footer.html" %} {% include "includes/footer.html" %}

View File

@ -1,6 +1,7 @@
{% load navigation_tags %} {% load navigation_tags %}
<footer> <footer>
<div class="site-container footer-inner">
<div class="company-info"> <div class="company-info">
<div class="copyright"> <div class="copyright">
{% get_footer_text %} {% get_footer_text %}
@ -70,4 +71,5 @@
</div> </div>
{% endif %} {% endif %}
</div> </div>
</div>
</footer> </footer>

View File

@ -2,6 +2,7 @@
{% get_settings use_default_site=True as settings %} {% get_settings use_default_site=True as settings %}
<header class="site-header{% if settings.base.HeaderSettings.logo_light and settings.base.HeaderSettings.logo_dark %} has-logo-variants{% endif %}"> <header class="site-header{% if settings.base.HeaderSettings.logo_light and settings.base.HeaderSettings.logo_dark %} has-logo-variants{% endif %}">
<div class="site-container">
<div class="header-inner"> <div class="header-inner">
{% if settings.base.HeaderSettings.logo_light and settings.base.HeaderSettings.logo_dark %} {% if settings.base.HeaderSettings.logo_light and settings.base.HeaderSettings.logo_dark %}
<a href="/" class="logo logo--light"> <a href="/" class="logo logo--light">
@ -113,4 +114,5 @@
</div> </div>
</form> </form>
</div> </div>
</div>
</header> </header>