diff options
author | petrus comestor <petrus@comestor.org> | 2024-03-18 16:45:51 -0400 |
---|---|---|
committer | petrus comestor <petrus@comestor.org> | 2024-03-18 16:45:51 -0400 |
commit | c6b54a14cd5d0a1fac1ba5911dd98b1d26adf662 (patch) | |
tree | f61220b2e5a27db89458c4d7246ea897c01e64be | |
parent | 220fded33241f506f07610593b395a36adc9c8b5 (diff) |
mobile
-rw-r--r-- | index.html | 9 | ||||
-rw-r--r-- | static/styles.css | 5 |
2 files changed, 11 insertions, 3 deletions
@@ -17,11 +17,14 @@ </div> <div class="category">Events</div> <p class="work"> - <span class="work-title">Martha’s Country Bakery</span> (N 1<sup>st</sup> & Bedford): - Mondays at 7p. + <span class="work-title">Martha’s Country Bakery</span> (N 1<sup>st</sup> & Bedford) + <br> + <span class="schedule">Mondays at 7p</span> </p> <p class="work"> - <span class="work-title">Book Club Bar</span>: Tuesday, March 19th at 10p. + <span class="work-title">Book Club Bar</span> + <br> + <span class="schedule">Tuesday, March 19th at 10p</span> </p> </div> </body> diff --git a/static/styles.css b/static/styles.css index 914322d..c8d5c6d 100644 --- a/static/styles.css +++ b/static/styles.css @@ -126,9 +126,14 @@ a:hover { } .work-title { + font-weight: bold; letter-spacing: -1px; } +.schedule { + margin-left: 2em; +} + .contact { margin-top: .3em; font-style: italic; |