diff --git a/index.html b/index.html index e19127d..ddc6dfd 100644 --- a/index.html +++ b/index.html @@ -137,15 +137,33 @@ Papa.parse(fileOrString, {
-
+
+
+
+ People Papa +
+ +
+ Thanks to all users and sponsors! Are you using Papa Parse or want to be a sponsor? Let me know. +
+
+   Get Papa Parse on GitHub   Try the demo -

- Are you using Papa Parse on your site? Let me know! Sites/companies using Papa may get mentioned on this page.
diff --git a/resources/css/home.css b/resources/css/home.css index 33d2def..a833d99 100644 --- a/resources/css/home.css +++ b/resources/css/home.css @@ -74,6 +74,89 @@ h3 { text-align: left; } +.showcase { + text-align: left; + margin-bottom: 40px; + background: #1D2933; + clear: both; +} + +.showcase a { + color: #668B99; +} + +.showcase-title { + color: #FFF; + font-size: 14px; + text-transform: uppercase; + padding: 10px 0; + background: #2C4252; + text-align: center; +} + +.showcase .fa-heart { + color: #F00; + margin: 0 2px; +} + +.showcase-image img { + width: 90%; + vertical-align: middle; +} + +.showcase-image .fa-plus { + padding: 20px 35px; + border: 4px dashed #2C4252; +} + +.showcase-image { + width: 200px; + height: 100px; + line-height: 100px; + text-align: center; + display: inline-block; + transition: background .4s; +} + +.showcase-image:hover { + background: #375A77; /* default */ +} + + + + + +.showcase-image.smartystreets:hover { + background: #FFC200; +} + +.showcase-image.maxcdn:hover { + background: #F37121; +} + +.showcase-image.maxcdn img { + width: auto; + max-height: 20px; +} + + + + + + +.showcase-add { + display: none; + color: #DDD; + padding: 10px 0; + font-size: 16px; + text-align: center; + border-top: 1px solid #337BAC; +} + + + + + @media (max-width: 900px) { header, .sticky-wrapper { @@ -108,4 +191,15 @@ h3 { .insignia { display: none; } + + + + + .showcase-image { + width: 49%; + } + + .showcase img { + max-width: 200px; + } } \ No newline at end of file diff --git a/resources/images/maxcdn.png b/resources/images/maxcdn.png new file mode 100644 index 0000000..002cafb Binary files /dev/null and b/resources/images/maxcdn.png differ diff --git a/resources/images/smartystreets.png b/resources/images/smartystreets.png new file mode 100644 index 0000000..b7de1c6 Binary files /dev/null and b/resources/images/smartystreets.png differ diff --git a/resources/js/home.js b/resources/js/home.js index ca6fd81..4d7dad8 100644 --- a/resources/js/home.js +++ b/resources/js/home.js @@ -34,4 +34,9 @@ $(function() $next.fadeIn(500).addClass('current'); }); }, 7000); + + $('#showcase-add-link').click(function() + { + $('.showcase-add').slideToggle('fast'); + }); }); \ No newline at end of file