From 78f3c0e9893d36e0ce039c2b79ede8a92ebe468a Mon Sep 17 00:00:00 2001 From: Unknown Date: Sun, 1 Oct 2017 00:24:20 -0400 Subject: Adding the code --- apps/firefox/css/charms.css | 218 +++++++++++++++++++++++++++++++++ apps/firefox/css/style.css | 176 ++++++++++++++++++++++++++ apps/firefox/img/appbar-icons.png | Bin 0 -> 16554 bytes apps/firefox/img/back.png | Bin 0 -> 1433 bytes apps/firefox/img/firefox-watermark.png | Bin 0 -> 8057 bytes apps/firefox/img/forward.png | Bin 0 -> 1336 bytes apps/firefox/img/identity-icon.png | Bin 0 -> 1748 bytes apps/firefox/img/newtab.png | Bin 0 -> 1105 bytes apps/firefox/img/reload.png | Bin 0 -> 1686 bytes apps/firefox/img/rightbg.png | Bin 0 -> 7122 bytes apps/firefox/index.html | 116 ++++++++++++++++++ apps/firefox/splashscreen.png | Bin 0 -> 4303527 bytes 12 files changed, 510 insertions(+) create mode 100644 apps/firefox/css/charms.css create mode 100644 apps/firefox/css/style.css create mode 100644 apps/firefox/img/appbar-icons.png create mode 100644 apps/firefox/img/back.png create mode 100644 apps/firefox/img/firefox-watermark.png create mode 100644 apps/firefox/img/forward.png create mode 100644 apps/firefox/img/identity-icon.png create mode 100644 apps/firefox/img/newtab.png create mode 100644 apps/firefox/img/reload.png create mode 100644 apps/firefox/img/rightbg.png create mode 100644 apps/firefox/index.html create mode 100644 apps/firefox/splashscreen.png (limited to 'apps/firefox') diff --git a/apps/firefox/css/charms.css b/apps/firefox/css/charms.css new file mode 100644 index 0000000..a0b00bd --- /dev/null +++ b/apps/firefox/css/charms.css @@ -0,0 +1,218 @@ +/* CSS Reset + Font */ +body { + font-family:Segoe UI; + margin:0px; + padding:0px; +} +img, a { + outline:none; + border:none; +} +/* Splashscreen */ +#splashscreen { + position:fixed; + width:100%; + height:100%; + color:#2974AE; + background-image:url('../splashscreen.png') , radial-gradient(#3285C9 0%, #1F5C88 840px); + background-position:center; + background-color:#2974AE; + background-repeat:no-repeat; + animation:splash 4s; + -ms-animation:splash 4s; + -webkit-animation:splash 4s; + -o-animation:splash 4s; + opacity:0; + z-index:-1; +} +@keyframes splash { + from { + z-index:2; + opacity: 1; + } + 66% { + opacity: 1; + } + to { + opacity:0; + z-index:1; + display:none; + } +} +@-webkit-keyframes splash { + from { + z-index:2; + opacity: 1; + } + 66% { + opacity: 1; + } + to { + opacity:0; + z-index:1; + display:none; + } +} +@-ms-keyframes splash { + from { + z-index:2; + opacity: 1; + } + 66% { + opacity: 1; + } + to { + opacity:0; + z-index:1; + display:none; + } +} +@-o-keyframes splash { + from { + z-index:2; + opacity: 1; + } + 66% { + opacity: 1; + } + to { + opacity:0; + z-index:1; + display:none; + } +} +/* Charms */ +/* Hover areas */ +#hoverarea { + position:fixed; + top:0px; + right:0px; + width:15px; + height:15px; +} +#bottomhoverarea { + position:fixed; + bottom:0px; + right:0px; + width:15px; + height:15px; +} +#starthoverarea { + position:fixed; + bottom:0px; + left:0px; + width:15px; + height:15px; +} +/* Charms bar */ +#charmsbar { + z-index:2; + display:none; + background-color:#111111; + position:fixed; + padding:5% 0; + top:0px; + right:0px; + height:100%; + width: 86px; + +} +/* Start button */ +#startbutton { + display:none; + position:fixed; + left:0px; + bottom:0px; + margin:0; + padding:0; +} +/* Date and time on charms */ +#datetime { + display:none; + position:fixed; + left:50px; + bottom:50px; + width:490px; + height:139px; + background-color: rgba(17,17,17,0.96); + color:#FFFFFF; +} +#ctime { + position:absolute; + left:70px; + bottom:19px; + font-family: Segoe UI Light; + font-size: 64pt; +} +#date { + margin-top:20px; + margin-right:20px; + float:right; + font-size:24pt; +} +#iconnetwork { + position:absolute; + top:35px; + left:25px; +} +#iconbattery { + position:absolute; + bottom:35px; + left:32px; +} + +/* Text styling on Settings, share charms */ + +.ch1 { + font-family:Segoe UI Semilight; + font-size:28px; + margin-bottom:25px; +} +.ch2 { + font-size:11pt; + margin-bottom:25px; +} +.ch2d { + font-size:11pt; + color:#A8A8A8; + margin-bottom:25px; +} +.sharing { + font-size:14pt; +} +/* Close button on settings, share charms */ +.closesettings { + float:right; + height:32px !important; + width:32px !important; + box-shadow:none !important; + background-image: url(images/charmsbar/settings/close.png); +} +/*.closesettings:hover { + background-image: url(images/charmsbar/settings/close-hover.png); +}*/ +.closesettings:active { + background-image: url(images/charmsbar/settings/close-active.png); +} +/* Charms */ +.charms { + z-index:2; + background-color:#001E4E; + padding : 40px; + position:fixed; + top:0px; + right:0px; + height:100%; + width: 345px; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + display:none; + color:#FFF; +} +/* Settings charms */ +#settingscharms { + +} \ No newline at end of file diff --git a/apps/firefox/css/style.css b/apps/firefox/css/style.css new file mode 100644 index 0000000..1761aaa --- /dev/null +++ b/apps/firefox/css/style.css @@ -0,0 +1,176 @@ +body { + margin:0; + padding:0; + background-color:#F8F8F8; +} +iframe { + position:absolute; + background-color:#FFF; + background-image: url('../img/firefox-watermark.png'); + background-position: center; + background-repeat: no-repeat; +} +#navbar { + padding-top:10px; + padding-left:28px; + min-height:57px; + max-height:57px; +} +#back { + border-radius:100px; + display:inline-block; + background-image: url("../img/back.png"); + width:48px; + height:48px; + cursor:pointer; +} +#forward { + display:inline-block; + width: 22px; + height: 25px; + background-image: url("../img/forward.png"); + background-position:18px center; + background-repeat:no-repeat; + vertical-align: top; + margin-top: 5px; + margin-left:-14px; + border:2px solid #C0C6CC; + border-left:none; + padding: 5px 0px 5px 28px; + cursor:pointer; + z-index: -1; +} +#addressbar { + outline:none; + height:25px; + width:78%; + vertical-align: top; + margin-top: 5px; + margin-left:-4px; + padding:5px; + padding-left: 42px; + border:2px solid #C0C6CC; + border-left:none; + font-size:13pt; + font-family:Segoe UI; + background-image: url("../img/identity-icon.png"); + background-position:10px center; + background-repeat:no-repeat; +} +#reload { + display:inline-block; + width: 23px; + height: 25px; + background-image: url("../img/reload.png"); + background-position:0px center; + background-repeat:no-repeat; + vertical-align: top; + margin-top: 7px; + margin-left: 16px; + padding:5px; + cursor:pointer; +} +#go { + display:inline-block; + width: 23px; + height: 25px; + background-image: url("../img/forward.png"); + background-position:center; + background-repeat:no-repeat; + vertical-align: top; + margin-top: 7px; + margin-left: 16px; + padding:5px; + cursor:pointer; +} +#newtab { + display:inline-block; + width:128px; + height:68px; + position: absolute; + top:-8px; + right:0; + background-image: url("../img/newtab.png"), url("../img/rightbg.png"); + background-size:auto; + background-position:100px center, 40px center; + background-repeat:no-repeat; + padding:5px; + cursor:pointer; +} +#appbar { + position:fixed; + bottom:0; + height:66px; + width:100%; + background-color:#FF8000; + display:none; +} +#downloadbutton, #addonbutton, #bookmarkbutton, #settingsbutton, #pinbutton, #zoomin, #zoomout { + display:inline-block; + width:40px; + height:40px; + margin:13px; + background-image:url(../img/appbar-icons.png); + border:none; + outline:none; +} +#downloadbutton:hover { + background-position:0px -40px; +} +#downloadbutton:active { + background-position:0px -80px; +} +#addonbutton { + background-position:-40px 0px; +} +#addonbutton:hover { + background-position:-40px -40px; +} +#addonbutton:active { + background-position:-40px -80px; +} +#settingsbutton { + background-position:-160px 0px; +} +#settingsbutton:hover { + background-position:-160px -40px; +} +#settingsbutton:active { + background-position:-160px -80px; +} +#zoomin{ + background-position:-80px 0px; +} +#zoomin:hover { + background-position:-80px -40px; +} +#zoomin:active { + background-position:-80px -80px; +} +#zoomout { + background-position:-120px 0px; +} +#zoomout:hover { + background-position:-120px -40px; +} +#zoomout:active { + background-position:-120px -80px; +} +#bookmarkbutton { + background-position:-320px 0px; +} +#bookmarkbutton:hover { + background-position:-320px -40px; +} +#bookmarkbutton:active { + background-position:-320px -80px; +} +#pinbutton { + background-position:-200px 0px; +} +#pinbutton:hover { + background-position:-200px -40px; +} +#pinbutton:active { + background-position:-200px -80px; +} \ No newline at end of file diff --git a/apps/firefox/img/appbar-icons.png b/apps/firefox/img/appbar-icons.png new file mode 100644 index 0000000..d33e18e Binary files /dev/null and b/apps/firefox/img/appbar-icons.png differ diff --git a/apps/firefox/img/back.png b/apps/firefox/img/back.png new file mode 100644 index 0000000..12b1906 Binary files /dev/null and b/apps/firefox/img/back.png differ diff --git a/apps/firefox/img/firefox-watermark.png b/apps/firefox/img/firefox-watermark.png new file mode 100644 index 0000000..7e86268 Binary files /dev/null and b/apps/firefox/img/firefox-watermark.png differ diff --git a/apps/firefox/img/forward.png b/apps/firefox/img/forward.png new file mode 100644 index 0000000..f811984 Binary files /dev/null and b/apps/firefox/img/forward.png differ diff --git a/apps/firefox/img/identity-icon.png b/apps/firefox/img/identity-icon.png new file mode 100644 index 0000000..1ec7027 Binary files /dev/null and b/apps/firefox/img/identity-icon.png differ diff --git a/apps/firefox/img/newtab.png b/apps/firefox/img/newtab.png new file mode 100644 index 0000000..3154764 Binary files /dev/null and b/apps/firefox/img/newtab.png differ diff --git a/apps/firefox/img/reload.png b/apps/firefox/img/reload.png new file mode 100644 index 0000000..f3b89df Binary files /dev/null and b/apps/firefox/img/reload.png differ diff --git a/apps/firefox/img/rightbg.png b/apps/firefox/img/rightbg.png new file mode 100644 index 0000000..78ce96a Binary files /dev/null and b/apps/firefox/img/rightbg.png differ diff --git a/apps/firefox/index.html b/apps/firefox/index.html new file mode 100644 index 0000000..4edad75 --- /dev/null +++ b/apps/firefox/index.html @@ -0,0 +1,116 @@ + + + + + + + Firefox + + + + + + + + + + + + + +
+ + + +
+
+ + +
+
+ + + + + +
+
+ + +
+
+
+
+
+
+
+
+ + + + +
+ +
+
+
+ +
+
+
+
+ + diff --git a/apps/firefox/splashscreen.png b/apps/firefox/splashscreen.png new file mode 100644 index 0000000..00ecb3b Binary files /dev/null and b/apps/firefox/splashscreen.png differ -- cgit v1.2.3