From 619c96d2a365632d9ac627d0e51b516b77c3cae4 Mon Sep 17 00:00:00 2001 From: Vat Raghavan Date: Tue, 4 Aug 2020 22:48:31 -0700 Subject: [PATCH] add icons --- index.html | 32 ++++++++++++++++---------------- jhdc.css | 18 +++++++++--------- manifest.json | 41 +++++++++++++++++++++++++++++++++++++++++ 3 files changed, 66 insertions(+), 25 deletions(-) create mode 100644 manifest.json diff --git a/index.html b/index.html index 7dc4836..8a94256 100644 --- a/index.html +++ b/index.html @@ -9,26 +9,26 @@ - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - + diff --git a/jhdc.css b/jhdc.css index 305ae24..33b5dc9 100644 --- a/jhdc.css +++ b/jhdc.css @@ -19,42 +19,42 @@ } } */ - + [class^="icon-"]:before, [class*=" icon-"]:before { font-family: "jhdc"; font-style: normal; font-weight: normal; speak: none; - + display: inline-block; text-decoration: inherit; width: 1em; margin-right: .2em; text-align: center; /* opacity: .8; */ - + /* For safety - reset parent styles, that can break glyph codes*/ font-variant: normal; text-transform: none; - + /* fix buttons height, for twitter bootstrap */ line-height: 1em; - + /* Animation center compensation - margins should be symmetric */ /* remove if not needed */ margin-left: .2em; - + /* you can be more comfortable with increased icons size */ /* font-size: 120%; */ - + /* Font smoothing. That was taken from TWBS */ -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; - + /* Uncomment for 3D effect */ /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ } - + .icon-reddit:before { content: '\e800'; } /* 'î €' */ .icon-stackoverflow:before { content: '\e801'; } /* 'î ' */ .icon-skype:before { content: '\e802'; } /* 'î ‚' */ diff --git a/manifest.json b/manifest.json new file mode 100644 index 0000000..08beb34 --- /dev/null +++ b/manifest.json @@ -0,0 +1,41 @@ +{ + "name": "App", + "icons": [ + { + "src": "\/android-icon-36x36.png", + "sizes": "36x36", + "type": "image\/png", + "density": "0.75" + }, + { + "src": "\/android-icon-48x48.png", + "sizes": "48x48", + "type": "image\/png", + "density": "1.0" + }, + { + "src": "\/android-icon-72x72.png", + "sizes": "72x72", + "type": "image\/png", + "density": "1.5" + }, + { + "src": "\/android-icon-96x96.png", + "sizes": "96x96", + "type": "image\/png", + "density": "2.0" + }, + { + "src": "\/android-icon-144x144.png", + "sizes": "144x144", + "type": "image\/png", + "density": "3.0" + }, + { + "src": "\/android-icon-192x192.png", + "sizes": "192x192", + "type": "image\/png", + "density": "4.0" + } + ] +}