From 756ce7b78fced879d77d00ae30e52b82f1cb2a0e Mon Sep 17 00:00:00 2001 From: Yuval Adam <_@yuv.al> Date: Sat, 15 Jul 2017 17:15:01 +0300 Subject: Fonts test --- index.html | 4 +- static/css/style.css | 34 ++++ static/fonts/Patua_One_400.eot | Bin 0 -> 14503 bytes static/fonts/Patua_One_400.svg | 361 +++++++++++++++++++++++++++++++++++++++ static/fonts/Patua_One_400.ttf | Bin 0 -> 30516 bytes static/fonts/Patua_One_400.woff | Bin 0 -> 16724 bytes static/fonts/Patua_One_400.woff2 | Bin 0 -> 12620 bytes style.css | 17 -- 8 files changed, 397 insertions(+), 19 deletions(-) create mode 100644 static/css/style.css create mode 100644 static/fonts/Patua_One_400.eot create mode 100644 static/fonts/Patua_One_400.svg create mode 100644 static/fonts/Patua_One_400.ttf create mode 100644 static/fonts/Patua_One_400.woff create mode 100644 static/fonts/Patua_One_400.woff2 delete mode 100644 style.css diff --git a/index.html b/index.html index 0d889e1..fb6b1a4 100644 --- a/index.html +++ b/index.html @@ -6,13 +6,13 @@ Direct link to your WhatsApp contacts | WhatZap.space - +
-

Direct link to your WhatsApp contacts

+

WhatZap

diff --git a/static/css/style.css b/static/css/style.css new file mode 100644 index 0000000..0f4dec1 --- /dev/null +++ b/static/css/style.css @@ -0,0 +1,34 @@ +@font-face { + font-family: 'Patua One'; + font-style: normal; + font-weight: 400; + src: + local('Patua One'), + local('PatuaOne-Regular'), + url('static/fonts/Patua_One_400.eot?#iefix') format('embedded-opentype'), + url('static/fonts/Patua_One_400.woff') format('woff'), + url('static/fonts/Patua_One_400.woff2') format('woff2'), + url('static/fonts/Patua_One_400.svg#PatuaOne') format('svg'), + url('static/fonts/Patua_One_400.ttf') format('truetype'); +} + +body { + background: #56ab2f; + background: -webkit-linear-gradient(to top, #56ab2f, #a8e063); + background: linear-gradient(to top, #56ab2f, #a8e063); + display: flex; + justify-content: center; + align-items: center; + overflow: hidden; +} +div#app { + flex: 1; + height: 100vh; + text-align: center; +} +h1 { + font-family: "Patua One"; +} +div#link { + margin-top: 20px; +} diff --git a/static/fonts/Patua_One_400.eot b/static/fonts/Patua_One_400.eot new file mode 100644 index 0000000..c0a5dd8 Binary files /dev/null and b/static/fonts/Patua_One_400.eot differ diff --git a/static/fonts/Patua_One_400.svg b/static/fonts/Patua_One_400.svg new file mode 100644 index 0000000..ffdb350 --- /dev/null +++ b/static/fonts/Patua_One_400.svg @@ -0,0 +1,361 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/fonts/Patua_One_400.ttf b/static/fonts/Patua_One_400.ttf new file mode 100644 index 0000000..61584a5 Binary files /dev/null and b/static/fonts/Patua_One_400.ttf differ diff --git a/static/fonts/Patua_One_400.woff b/static/fonts/Patua_One_400.woff new file mode 100644 index 0000000..5b2af6e Binary files /dev/null and b/static/fonts/Patua_One_400.woff differ diff --git a/static/fonts/Patua_One_400.woff2 b/static/fonts/Patua_One_400.woff2 new file mode 100644 index 0000000..b4f8d5c Binary files /dev/null and b/static/fonts/Patua_One_400.woff2 differ diff --git a/style.css b/style.css deleted file mode 100644 index 6f10968..0000000 --- a/style.css +++ /dev/null @@ -1,17 +0,0 @@ -body { - background: #56ab2f; - background: -webkit-linear-gradient(to top, #56ab2f, #a8e063); - background: linear-gradient(to top, #56ab2f, #a8e063); - display: flex; - justify-content: center; - align-items: center; - overflow: hidden; -} -div#app { - flex: 1; - height: 100vh; - text-align: center; -} -div#link { - margin-top: 20px; -} -- cgit v1.3.1