diff --git a/css/site.css b/css/site.css index e4fcd59..f9b0571 100644 --- a/css/site.css +++ b/css/site.css @@ -44,13 +44,12 @@ ul.nav li a:hover {border-bottom: 1px #FD9393 solid;} .leaflet-popup-content h2 {font-family: Lato; font-size: 14px; text-transform: uppercase;} -#rightSide {height: 400px; max-width: 350px; width: 100%; float: right; padding-top: 5px;} +#rightSide {max-width: 350px; width: 100%; float: right; padding-top: 5px;} #selectedSpot {display: none;} #latestSpot ul, #selectedSpot ul {list-style: none; margin-top: 12px 0px; padding: 0px;} .category {text-transform: uppercase; font-size: 9px; letter-spacing: .2em; padding-right: 6px;} -#info p {font-size: 14px; padding: 4px; line-height: 19px; font-weight: 300;} -#info {border-top: 4px #F8F8F8 solid;} +#info p {font-size: 14px; padding: 4px; line-height: 19px; font-weight: 300; max-width: 530px; min-width: 300px; } #hackSpotsTable {cursor: pointer; background: #fff; overflow-x: auto; padding-bottom: 20px;} #hackSpotsTable table {min-width: 900px;} diff --git a/index.html b/index.html index 6fb1ab1..d49cb80 100644 --- a/index.html +++ b/index.html @@ -25,10 +25,8 @@
@@ -38,48 +36,43 @@
+
+

Although the bookselling community of New York City is much depleted from its heyday, there still are independent bookstores out there. Unfortunately, there has also been a lack of resources available to discover and visit the stores that do exist. This site, while not on the level of the old guides, can help with that.

+

While the data here are kept up-to-date to the best of my ability, I make no promises about the accuracy of locations or other details presented. If you spot an error, or I've missed a shop, please let me know by email or twitter. Powered by sheetsee.js; based on a project by @jllord. +

Clear Reset Map no matches
-
-

Info

-

I love bookstores. And I love New York City. And I love silly projects. So I decided to combine all three into one: this website. Based on the fantastic hack-spots from jllord, this website takes bookstore data from a Google spreadsheet and maps it all out, with details.

- -

The rules for inclusion are simple: Books must be the main commodity sold at the store. I'm on the fence whether to include specialty bookstores like religious bookstores or not.

- -

Medium-term goals include adding short blurbs about each store as I (or other intrepid volunteers) visit the stores, and adding pictures somehow.

-
@@ -150,7 +143,7 @@ var latestCompleteSpot = [] var startWithLatestRow = data.reverse() startWithLatestRow.forEach(function(row){ - if (!row.lat || !row.long || !row.name || !row.address || !row.city || !row.state ) return + if (!row.lat || !row.long || !row.name || !row.address || !row.city) return else latestCompleteSpot.push(row) }) return latestCompleteSpot[0]