generated from nathanwoodburn/python-webserver-template
feat: Add YA branding
All checks were successful
Build Docker / BuildImage (push) Successful in 2m19s
All checks were successful
Build Docker / BuildImage (push) Successful in 2m19s
This commit is contained in:
@@ -66,11 +66,20 @@ header {
|
|||||||
}
|
}
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
font-size: 48px;
|
font-size: 42px;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 20px 0;
|
padding: 15px 0 5px 0;
|
||||||
color: var(--text-color);
|
color: var(--text-color);
|
||||||
font-weight: 300;
|
font-weight: 300;
|
||||||
|
letter-spacing: 1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.subtitle {
|
||||||
|
font-size: 18px;
|
||||||
|
color: var(--leader-color);
|
||||||
|
margin: 0 0 15px 0;
|
||||||
|
font-style: italic;
|
||||||
|
letter-spacing: 0.5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.theme-switcher {
|
.theme-switcher {
|
||||||
@@ -263,7 +272,12 @@ h1 {
|
|||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
font-size: 28px;
|
font-size: 28px;
|
||||||
padding: 10px 0;
|
padding: 10px 0 5px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.subtitle {
|
||||||
|
font-size: 14px;
|
||||||
|
margin-bottom: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.theme-switcher {
|
.theme-switcher {
|
||||||
@@ -326,25 +340,22 @@ h1 {
|
|||||||
font-size: 24px;
|
font-size: 24px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.schedule-container {
|
.subtitle {
|
||||||
padding: 12px 5px;
|
font-size: 12px;
|
||||||
border-radius: 6px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.schedule-table {
|
.study-info {
|
||||||
font-size: 11px;
|
padding: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.schedule-table th,
|
.study-info p {
|
||||||
.schedule-table td {
|
font-size: 12px;
|
||||||
padding: 6px 4px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Stack layout for very small screens */
|
/* Hide emoji suffixes on mobile for cleaner look */
|
||||||
.schedule-table th:nth-child(2),
|
.schedule-table th:nth-child(2)::after,
|
||||||
.schedule-table td:nth-child(2),
|
.schedule-table th:nth-child(3)::after,
|
||||||
.schedule-table th:nth-child(3),
|
.schedule-table th:nth-child(4)::after {
|
||||||
.schedule-table td:nth-child(3) {
|
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>Weekly Schedule</title>
|
<title>Young Adults Bible Study</title>
|
||||||
<link rel="icon" href="/assets/img/favicon.png" type="image/png">
|
<link rel="icon" href="/assets/img/favicon.png" type="image/png">
|
||||||
<link rel="stylesheet" href="/assets/css/schedule.css">
|
<link rel="stylesheet" href="/assets/css/schedule.css">
|
||||||
</head>
|
</head>
|
||||||
@@ -13,7 +13,8 @@
|
|||||||
<div class="container">
|
<div class="container">
|
||||||
<header>
|
<header>
|
||||||
<div class="header-content">
|
<div class="header-content">
|
||||||
<h1>Weekly Schedule</h1>
|
<h1>Young Adults Bible Study</h1>
|
||||||
|
<p class="subtitle">Weekly Schedule & Topics</p>
|
||||||
<div class="theme-switcher desktop-only">
|
<div class="theme-switcher desktop-only">
|
||||||
<span class="theme-label">Theme:</span>
|
<span class="theme-label">Theme:</span>
|
||||||
<div class="theme-buttons">
|
<div class="theme-buttons">
|
||||||
@@ -36,9 +37,9 @@
|
|||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Date</th>
|
<th>Date</th>
|
||||||
<th>Primary Leader</th>
|
<th>Discussion Leader</th>
|
||||||
<th>Secondary Leader</th>
|
<th>Co-Leader</th>
|
||||||
<th>Topic</th>
|
<th>Study Topic</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
|
|||||||
Reference in New Issue
Block a user