From 9daac9f85adda360376d7474759183a65db93d0c Mon Sep 17 00:00:00 2001 From: Rudis Muiznieks Date: Sun, 26 Mar 2023 19:12:02 -0500 Subject: [PATCH] slight styling fix for mobile --- site/partial/home.html | 4 ++-- site/style.css | 14 ++++++++++++++ 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/site/partial/home.html b/site/partial/home.html index 62344e5..f59d61e 100644 --- a/site/partial/home.html +++ b/site/partial/home.html @@ -7,7 +7,7 @@

The home of streaming on-demand Old Time Radio.

What is Old Time Radio?

-

Old Time Radio shows are commercial audio programs that were broadcast over the air during the "Golden Age of Radio," an era that spans from the 1920s through the 1950s. Audio shows that were broadcast prior to 1972 were not subject to federal copyright protections, so as a result many of these old shows are available in the public domain.

+

Old Time Radio shows are commercial audio programs that were broadcast over the air during the "Golden Age of Radio," an era that spans from the 1920s through the 1950s. Audio shows that were broadcast in the USA prior to 1972 were not subject to federal copyright protections, so as a result many of these old shows are available in the public domain.

To give you a concrete example, here are a couple of my favorite episodes that you can listen to right now:

What is Radiostasis?

Radiostasis started as an Android application back in 2017, but has since been shut down and rebooted here as a web-based Old Time Radio player. All of the episodes have been sourced from the Internet Archive, cataloged, and made available for on-demand playing. Click the All Series link in the sidebar, or select a specific genre to begin exploring the library.

Radiostasis is an open source passion project by Rudis Muiznieks, a software engineer who happens to love Old Time Radio. Radiostasis is a constant work in progress, with many improvements planned for the future. Currently the site is completely free to use—Rudis foots all the bills to host this site on his own—but premium features may be introduced in future updates to help offset some of the costs.

-

If you have any questions, suggestions, or just want to say thanks, feel free to email Rudis at support@radiostasis.com.

+

If you have any questions, suggestions, or just want to say hello, feel free to email Rudis at support@radiostasis.com.

Change Log

2023-03-26

Initial release with bare-bones series and episodes lists, plus the ability to stream individual episodes.

diff --git a/site/style.css b/site/style.css index bf6171b..1b6b4b3 100644 --- a/site/style.css +++ b/site/style.css @@ -409,3 +409,17 @@ h2 svg { .home a:hover { text-shadow: 0.05rem 0.05rem 0.125rem rgba(0, 0, 0, 0.25); } + +@media only screen and (max-width: 50ch) { + #nowPlaying { + display: none; + } + .seriesList { + display: grid; + grid-gap: 1rem; + grid-template-columns: repeat(auto-fit, minmax(30ch, 1fr)); + } + .seriesList label { + font-size: 1em; + } +}