snapdrop

A Progressive Web App for local file sharing
git clone http://git.hanabi.in/repos/snapdrop.git
Log | Files | Refs | README | LICENSE

commit ed8c6ab653821db5de58a6ed16c0b3bd1d7ce131
parent 6416cca048451a3f725042e3f93ce3cdd36867ce
Author: Robin Linus <robin_woll@capira.de>
Date:   Fri,  1 Jan 2016 21:52:41 +0100

Minor style improvements

Diffstat:
Mapp/elements/buddy-finder/buddy-finder.html | 2+-
Mapp/elements/buddy-finder/personal-avatar.html | 7+++++++
Mapp/index.html | 2+-
Mapp/scripts/animated-bg.js | 2+-
4 files changed, 10 insertions(+), 3 deletions(-)

diff --git a/app/elements/buddy-finder/buddy-finder.html b/app/elements/buddy-finder/buddy-finder.html @@ -43,7 +43,7 @@ .short { font-size: 14px; line-height: 20px; - color: #505050; + color: #727272; } .short a { diff --git a/app/elements/buddy-finder/personal-avatar.html b/app/elements/buddy-finder/personal-avatar.html @@ -26,6 +26,13 @@ .discover { color: #4285f4; + line-height: 18px; + } + + @media all and (max-width: 370px) { + .discover { + font-size: 12px; + } } @media all and (max-height: 370px) { diff --git a/app/index.html b/app/index.html @@ -7,7 +7,7 @@ <meta name="viewport" content="width=device-width initial-scale=1.0, maximum-scale=1.0, user-scalable=no" /> <meta name="generator" content="Snapdrop"> <title>Snapdrop</title> - <link rel="shortcut icon" href="favicon.ico?v=2" /> + <link rel="shortcut icon" href="favicon.ico?v=2"/> <!-- Place favicon.ico in the `app/` directory --> <!-- Chrome for Android theme color --> <meta name="theme-color" content="#3367d6"> diff --git a/app/scripts/animated-bg.js b/app/scripts/animated-bg.js @@ -19,7 +19,7 @@ h = window.innerHeight; c.width = w; c.height = h; - var offset = h > 370 ? 103 : 65; + var offset = h > 370 ? 100 : 65; x0 = w / 2; y0 = h - offset; dw = Math.max(w, h, 1000) / 13;