- Added timezone support (Pacific/Auckland) for calendar events - Implemented recurring event handling using recurring_ical_events library - Created horizontal 5-day column layout for calendar display - Fixed multi-day event rendering to show events across all active days - Updated calendar to show next 5 days (today + 4) - Reduced font sizes and padding for compact display - Changed image rotation interval to 60 seconds - Added pytz and recurring_ical_events dependencies Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
397 lines
6.4 KiB
CSS
397 lines
6.4 KiB
CSS
/* Reset and base styles */
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
|
|
overflow: hidden;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
color: #ffffff;
|
|
}
|
|
|
|
/* Background */
|
|
#background {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-size: cover;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
z-index: 0;
|
|
transition: background-image 1s ease-in-out;
|
|
}
|
|
|
|
#background::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: rgba(0, 0, 0, 0.1);
|
|
z-index: 1;
|
|
}
|
|
|
|
/* Main container */
|
|
.container {
|
|
position: relative;
|
|
z-index: 2;
|
|
width: 100%;
|
|
height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 1rem;
|
|
}
|
|
|
|
/* Header */
|
|
.header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: flex-start;
|
|
margin-bottom: 1rem;
|
|
background: rgba(0, 0, 0, 0.05);
|
|
backdrop-filter: blur(10px);
|
|
padding: 1rem 1.5rem;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.time-display {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.time {
|
|
font-size: 3rem;
|
|
font-weight: 300;
|
|
line-height: 1;
|
|
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
|
|
}
|
|
|
|
.date {
|
|
font-size: 1.1rem;
|
|
font-weight: 300;
|
|
margin-top: 0.3rem;
|
|
opacity: 0.9;
|
|
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
|
|
}
|
|
|
|
.weather-summary {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 1.5rem;
|
|
}
|
|
|
|
.current-weather-item {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 0.2rem;
|
|
}
|
|
|
|
.weather-label {
|
|
font-size: 0.85rem;
|
|
opacity: 0.8;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.05em;
|
|
}
|
|
|
|
.current-temp {
|
|
font-size: 2rem;
|
|
font-weight: 300;
|
|
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
|
|
}
|
|
|
|
.weather-icon {
|
|
font-size: 1.8rem;
|
|
}
|
|
|
|
.header-forecast {
|
|
display: flex;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.forecast-item {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 0.2rem;
|
|
}
|
|
|
|
.forecast-icon {
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
.forecast-temps {
|
|
display: flex;
|
|
gap: 0.3rem;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.forecast-temps .high {
|
|
font-weight: 500;
|
|
}
|
|
|
|
.forecast-temps .low {
|
|
opacity: 0.6;
|
|
}
|
|
|
|
/* Main content */
|
|
.main-content {
|
|
flex: 1;
|
|
display: flex;
|
|
overflow: hidden;
|
|
}
|
|
|
|
/* Sections */
|
|
section {
|
|
background: rgba(0, 0, 0, 0.05);
|
|
backdrop-filter: blur(10px);
|
|
padding: 1rem 1.5rem;
|
|
border-radius: 10px;
|
|
overflow-y: auto;
|
|
flex: 1;
|
|
}
|
|
|
|
section h2 {
|
|
font-size: 1.3rem;
|
|
font-weight: 400;
|
|
margin-bottom: 0.8rem;
|
|
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
|
|
}
|
|
|
|
section h3 {
|
|
font-size: 1.1rem;
|
|
font-weight: 400;
|
|
margin: 1rem 0 0.5rem;
|
|
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
|
|
}
|
|
|
|
/* Weather Section */
|
|
.weather-description {
|
|
font-size: 1.1rem;
|
|
margin-bottom: 0.6rem;
|
|
text-transform: capitalize;
|
|
}
|
|
|
|
.weather-details {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.4rem;
|
|
margin: 0.8rem 0;
|
|
}
|
|
|
|
.weather-detail {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
font-size: 0.95rem;
|
|
padding: 0.3rem 0;
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
|
|
}
|
|
|
|
.weather-detail .label {
|
|
opacity: 0.8;
|
|
}
|
|
|
|
/* Forecast */
|
|
.forecast-days {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.forecast-day {
|
|
display: grid;
|
|
grid-template-columns: 60px 1fr 100px;
|
|
align-items: center;
|
|
padding: 0.6rem;
|
|
background: rgba(255, 255, 255, 0.05);
|
|
border-radius: 8px;
|
|
gap: 0.8rem;
|
|
}
|
|
|
|
.forecast-day-name {
|
|
font-size: 1rem;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.forecast-description {
|
|
font-size: 0.9rem;
|
|
opacity: 0.8;
|
|
text-transform: capitalize;
|
|
}
|
|
|
|
.forecast-temp {
|
|
font-size: 1rem;
|
|
text-align: right;
|
|
}
|
|
|
|
.forecast-temp .high {
|
|
font-weight: 500;
|
|
}
|
|
|
|
.forecast-temp .low {
|
|
opacity: 0.6;
|
|
margin-left: 0.5rem;
|
|
}
|
|
|
|
/* Calendar Section */
|
|
.events-list {
|
|
display: grid;
|
|
grid-template-columns: repeat(5, 1fr);
|
|
gap: 0.8rem;
|
|
height: 100%;
|
|
}
|
|
|
|
.day-group {
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-height: 0;
|
|
}
|
|
|
|
.day-header {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
padding: 0.6rem;
|
|
background: rgba(255, 255, 255, 0.1);
|
|
border-radius: 8px 8px 0 0;
|
|
margin-bottom: 0.5rem;
|
|
text-align: center;
|
|
}
|
|
|
|
.day-name {
|
|
font-size: 1rem;
|
|
font-weight: 500;
|
|
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
|
|
}
|
|
|
|
.day-date {
|
|
font-size: 0.85rem;
|
|
opacity: 0.8;
|
|
margin-top: 0.2rem;
|
|
}
|
|
|
|
.day-events {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.5rem;
|
|
overflow-y: auto;
|
|
flex: 1;
|
|
}
|
|
|
|
.no-events {
|
|
font-size: 0.85rem;
|
|
opacity: 0.5;
|
|
font-style: italic;
|
|
padding: 0.5rem;
|
|
text-align: center;
|
|
}
|
|
|
|
.event {
|
|
background: rgba(255, 255, 255, 0.05);
|
|
padding: 0.5rem 0.6rem;
|
|
border-radius: 6px;
|
|
border-left: 3px solid #4a9eff;
|
|
}
|
|
|
|
.event-time {
|
|
font-size: 0.75rem;
|
|
font-weight: 500;
|
|
margin-bottom: 0.2rem;
|
|
color: #4a9eff;
|
|
}
|
|
|
|
.event-title {
|
|
font-size: 0.9rem;
|
|
margin-bottom: 0.2rem;
|
|
line-height: 1.2;
|
|
}
|
|
|
|
.event-location {
|
|
font-size: 0.85rem;
|
|
opacity: 0.7;
|
|
font-style: italic;
|
|
}
|
|
|
|
.event-placeholder {
|
|
font-size: 1rem;
|
|
opacity: 0.6;
|
|
text-align: center;
|
|
padding: 2rem;
|
|
}
|
|
|
|
/* Footer */
|
|
.footer {
|
|
margin-top: 1rem;
|
|
background: rgba(0, 0, 0, 0.05);
|
|
backdrop-filter: blur(10px);
|
|
padding: 0.8rem 1.5rem;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.joke {
|
|
font-size: 0.9rem;
|
|
font-style: italic;
|
|
text-align: center;
|
|
opacity: 0.9;
|
|
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
|
|
}
|
|
|
|
/* Scrollbar styling */
|
|
::-webkit-scrollbar {
|
|
width: 8px;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background: rgba(255, 255, 255, 0.05);
|
|
border-radius: 10px;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: rgba(255, 255, 255, 0.2);
|
|
border-radius: 10px;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
/* Responsive adjustments for smaller screens */
|
|
@media (max-width: 1200px) {
|
|
.time {
|
|
font-size: 4rem;
|
|
}
|
|
|
|
.date {
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
.current-temp {
|
|
font-size: 3rem;
|
|
}
|
|
|
|
section h2 {
|
|
font-size: 1.6rem;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.main-content {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.time {
|
|
font-size: 3rem;
|
|
}
|
|
|
|
.current-temp {
|
|
font-size: 2.5rem;
|
|
}
|
|
}
|