From 78f3c0e9893d36e0ce039c2b79ede8a92ebe468a Mon Sep 17 00:00:00 2001 From: Unknown Date: Sun, 1 Oct 2017 00:24:20 -0400 Subject: Adding the code --- store/comingsoon.png | Bin 0 -> 20381 bytes store/css/charms.css | 165 +++++++++++++++++++++++++++++++++ store/img/charmsbar/battery.png | Bin 0 -> 234 bytes store/img/charmsbar/devices-hover.png | Bin 0 -> 816 bytes store/img/charmsbar/devices.png | Bin 0 -> 911 bytes store/img/charmsbar/network.png | Bin 0 -> 290 bytes store/img/charmsbar/search-hover.png | Bin 0 -> 1120 bytes store/img/charmsbar/search.png | Bin 0 -> 1101 bytes store/img/charmsbar/settings-hover.png | Bin 0 -> 1045 bytes store/img/charmsbar/settings.png | Bin 0 -> 1162 bytes store/img/charmsbar/share-hover.png | Bin 0 -> 1096 bytes store/img/charmsbar/share.png | Bin 0 -> 1230 bytes store/img/charmsbar/start-hover.png | Bin 0 -> 708 bytes store/img/charmsbar/start.png | Bin 0 -> 845 bytes store/img/charmsbar/startbutton.png | Bin 0 -> 640 bytes store/index.html | 82 ++++++++++++++++ store/splashscreen.png | Bin 0 -> 4942 bytes 17 files changed, 247 insertions(+) create mode 100644 store/comingsoon.png create mode 100644 store/css/charms.css create mode 100644 store/img/charmsbar/battery.png create mode 100644 store/img/charmsbar/devices-hover.png create mode 100644 store/img/charmsbar/devices.png create mode 100644 store/img/charmsbar/network.png create mode 100644 store/img/charmsbar/search-hover.png create mode 100644 store/img/charmsbar/search.png create mode 100644 store/img/charmsbar/settings-hover.png create mode 100644 store/img/charmsbar/settings.png create mode 100644 store/img/charmsbar/share-hover.png create mode 100644 store/img/charmsbar/share.png create mode 100644 store/img/charmsbar/start-hover.png create mode 100644 store/img/charmsbar/start.png create mode 100644 store/img/charmsbar/startbutton.png create mode 100644 store/index.html create mode 100644 store/splashscreen.png (limited to 'store') diff --git a/store/comingsoon.png b/store/comingsoon.png new file mode 100644 index 0000000..affa3f5 Binary files /dev/null and b/store/comingsoon.png differ diff --git a/store/css/charms.css b/store/css/charms.css new file mode 100644 index 0000000..abfb09f --- /dev/null +++ b/store/css/charms.css @@ -0,0 +1,165 @@ +body { +font-family:Segoe UI; +margin:0px; +padding:0px; +} +img, a { + outline:none; + border:none; +} +#splashscreen { +position:fixed; +width:100%; +height:100%; +color:#FFFFFF; +background-image:url('../splashscreen.png'); +background-repeat:no-repeat; +background-color:#008A00; +background-position:center; +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; +} +} +#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; +} +#charmsbar { + display:none; + background-color:#111111; + position:fixed; + padding:5% 0; + top:0px; + right:0px; + height:100%; + width: 86px; + +} +#settingscharms { + padding : 40px; + display:none; + background-color:#3B66AD; + position:fixed; + top:0px; + right:0px; + height:100%; + width: 345px; + +} +#startbutton { + display:none; + position:fixed; + left:0px; + bottom:0px; +} +#iconnetwork { + position:absolute; + top:35px; + left:25px; +} +#iconbattery { + position:absolute; + bottom:35px; + left:32px; +} +#datetime { + display:none; + position:fixed; + left:50px; + bottom:50px; + width:490px; + height:139px; + background-color: rgba(17,17,17,1); +} +#ctime { + position:absolute; + left:70px; + bottom:19px; + font-family: Segoe UI Light; + font-size: 64pt; + color:#FFFFFF; +} +#date { + margin-top:20px; + margin-right:20px; + float:right; + font-size:24pt; + font-family: Segoe UI; + color:#FFFFFF; +} diff --git a/store/img/charmsbar/battery.png b/store/img/charmsbar/battery.png new file mode 100644 index 0000000..07b1b4d Binary files /dev/null and b/store/img/charmsbar/battery.png differ diff --git a/store/img/charmsbar/devices-hover.png b/store/img/charmsbar/devices-hover.png new file mode 100644 index 0000000..ad3fa8e Binary files /dev/null and b/store/img/charmsbar/devices-hover.png differ diff --git a/store/img/charmsbar/devices.png b/store/img/charmsbar/devices.png new file mode 100644 index 0000000..1a81a90 Binary files /dev/null and b/store/img/charmsbar/devices.png differ diff --git a/store/img/charmsbar/network.png b/store/img/charmsbar/network.png new file mode 100644 index 0000000..5dc5ef7 Binary files /dev/null and b/store/img/charmsbar/network.png differ diff --git a/store/img/charmsbar/search-hover.png b/store/img/charmsbar/search-hover.png new file mode 100644 index 0000000..16a48f9 Binary files /dev/null and b/store/img/charmsbar/search-hover.png differ diff --git a/store/img/charmsbar/search.png b/store/img/charmsbar/search.png new file mode 100644 index 0000000..d5cea8e Binary files /dev/null and b/store/img/charmsbar/search.png differ diff --git a/store/img/charmsbar/settings-hover.png b/store/img/charmsbar/settings-hover.png new file mode 100644 index 0000000..c8f9820 Binary files /dev/null and b/store/img/charmsbar/settings-hover.png differ diff --git a/store/img/charmsbar/settings.png b/store/img/charmsbar/settings.png new file mode 100644 index 0000000..b63fbc3 Binary files /dev/null and b/store/img/charmsbar/settings.png differ diff --git a/store/img/charmsbar/share-hover.png b/store/img/charmsbar/share-hover.png new file mode 100644 index 0000000..bd3a423 Binary files /dev/null and b/store/img/charmsbar/share-hover.png differ diff --git a/store/img/charmsbar/share.png b/store/img/charmsbar/share.png new file mode 100644 index 0000000..b743bf0 Binary files /dev/null and b/store/img/charmsbar/share.png differ diff --git a/store/img/charmsbar/start-hover.png b/store/img/charmsbar/start-hover.png new file mode 100644 index 0000000..6cc3144 Binary files /dev/null and b/store/img/charmsbar/start-hover.png differ diff --git a/store/img/charmsbar/start.png b/store/img/charmsbar/start.png new file mode 100644 index 0000000..6cf722c Binary files /dev/null and b/store/img/charmsbar/start.png differ diff --git a/store/img/charmsbar/startbutton.png b/store/img/charmsbar/startbutton.png new file mode 100644 index 0000000..db9726d Binary files /dev/null and b/store/img/charmsbar/startbutton.png differ diff --git a/store/index.html b/store/index.html new file mode 100644 index 0000000..1c5cd7e --- /dev/null +++ b/store/index.html @@ -0,0 +1,82 @@ + + + + + Store + + + + + + + + + + + +
+ +
+
+
+
+
+
+
+
+ + + + +
+ +
+
+
+ +
+
+
+
+ + diff --git a/store/splashscreen.png b/store/splashscreen.png new file mode 100644 index 0000000..8acd252 Binary files /dev/null and b/store/splashscreen.png differ -- cgit v1.2.3