From 78f3c0e9893d36e0ce039c2b79ede8a92ebe468a Mon Sep 17 00:00:00 2001 From: Unknown Date: Sun, 1 Oct 2017 00:24:20 -0400 Subject: Adding the code --- App API/README.txt | 14 ++ App API/about.txt | 13 ++ App API/css/appbase.css | 229 +++++++++++++++++++++++++++++++ App API/img/charmsbar/battery.png | Bin 0 -> 234 bytes App API/img/charmsbar/close-active.png | Bin 0 -> 3473 bytes App API/img/charmsbar/close.png | Bin 0 -> 3516 bytes App API/img/charmsbar/devices-hover.png | Bin 0 -> 816 bytes App API/img/charmsbar/devices.png | Bin 0 -> 911 bytes App API/img/charmsbar/network.png | Bin 0 -> 290 bytes App API/img/charmsbar/search-hover.png | Bin 0 -> 1120 bytes App API/img/charmsbar/search.png | Bin 0 -> 1101 bytes App API/img/charmsbar/settings-hover.png | Bin 0 -> 1045 bytes App API/img/charmsbar/settings.png | Bin 0 -> 1162 bytes App API/img/charmsbar/share-hover.png | Bin 0 -> 1096 bytes App API/img/charmsbar/share.png | Bin 0 -> 1230 bytes App API/img/charmsbar/start-hover.png | Bin 0 -> 708 bytes App API/img/charmsbar/start.png | Bin 0 -> 845 bytes App API/img/charmsbar/startbutton.png | Bin 0 -> 640 bytes App API/index.html | 104 ++++++++++++++ App API/splashscreen.png | Bin 0 -> 8878 bytes 20 files changed, 360 insertions(+) create mode 100644 App API/README.txt create mode 100644 App API/about.txt create mode 100644 App API/css/appbase.css create mode 100644 App API/img/charmsbar/battery.png create mode 100644 App API/img/charmsbar/close-active.png create mode 100644 App API/img/charmsbar/close.png create mode 100644 App API/img/charmsbar/devices-hover.png create mode 100644 App API/img/charmsbar/devices.png create mode 100644 App API/img/charmsbar/network.png create mode 100644 App API/img/charmsbar/search-hover.png create mode 100644 App API/img/charmsbar/search.png create mode 100644 App API/img/charmsbar/settings-hover.png create mode 100644 App API/img/charmsbar/settings.png create mode 100644 App API/img/charmsbar/share-hover.png create mode 100644 App API/img/charmsbar/share.png create mode 100644 App API/img/charmsbar/start-hover.png create mode 100644 App API/img/charmsbar/start.png create mode 100644 App API/img/charmsbar/startbutton.png create mode 100644 App API/index.html create mode 100644 App API/splashscreen.png (limited to 'App API') diff --git a/App API/README.txt b/App API/README.txt new file mode 100644 index 0000000..8a01a68 --- /dev/null +++ b/App API/README.txt @@ -0,0 +1,14 @@ +Online Windows 8 App API by ntim007 +*********************************** +How to ? +******** +- Make your app using the API +- Send a note to ntim007 or/and to link6155 on deviantART + +Things you should do before submitting your app : +************************************************* +- Make sure there's no pornographic/mature content because we won't accept it. +- Fill in another txt file called about.txt +- Please make sure that there is a splash screen and a 250x250 tile + + diff --git a/App API/about.txt b/App API/about.txt new file mode 100644 index 0000000..dba43f6 --- /dev/null +++ b/App API/about.txt @@ -0,0 +1,13 @@ + + APP NAME : + + CREATED BY : + + DESCRIPTION : + + + + + + + HOW CAN WE CONTACT YOU (deviantART username or email): diff --git a/App API/css/appbase.css b/App API/css/appbase.css new file mode 100644 index 0000000..75a53ff --- /dev/null +++ b/App API/css/appbase.css @@ -0,0 +1,229 @@ +/* CSS Reset + Font */ +body { + font-family:Segoe UI; + margin:0px; + padding:0px; +} +img, a { + border:none; + outline:none; +} +/* App bar */ +#appbar { + position:fixed; + bottom:0; + background-color:#111; + width:100%; + height:32px; + display:none; + padding:10px; +} +/* 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 { + 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 */ +.charms span { + line-height:40px; +} +.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 */ +.closecharms { + float:right; + height:32px !important; + width:32px !important; + box-shadow:none !important; + background-image: url(../img/charmsbar/close.png); +} +/*.closecharms:hover { + background-image: url(../img/charmsbar/close-hover.png); +}*/ +.closecharms:active { + background-image: url(../img/charmsbar/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/App API/img/charmsbar/battery.png b/App API/img/charmsbar/battery.png new file mode 100644 index 0000000..07b1b4d Binary files /dev/null and b/App API/img/charmsbar/battery.png differ diff --git a/App API/img/charmsbar/close-active.png b/App API/img/charmsbar/close-active.png new file mode 100644 index 0000000..eafc8fb Binary files /dev/null and b/App API/img/charmsbar/close-active.png differ diff --git a/App API/img/charmsbar/close.png b/App API/img/charmsbar/close.png new file mode 100644 index 0000000..7173f58 Binary files /dev/null and b/App API/img/charmsbar/close.png differ diff --git a/App API/img/charmsbar/devices-hover.png b/App API/img/charmsbar/devices-hover.png new file mode 100644 index 0000000..ad3fa8e Binary files /dev/null and b/App API/img/charmsbar/devices-hover.png differ diff --git a/App API/img/charmsbar/devices.png b/App API/img/charmsbar/devices.png new file mode 100644 index 0000000..1a81a90 Binary files /dev/null and b/App API/img/charmsbar/devices.png differ diff --git a/App API/img/charmsbar/network.png b/App API/img/charmsbar/network.png new file mode 100644 index 0000000..5dc5ef7 Binary files /dev/null and b/App API/img/charmsbar/network.png differ diff --git a/App API/img/charmsbar/search-hover.png b/App API/img/charmsbar/search-hover.png new file mode 100644 index 0000000..16a48f9 Binary files /dev/null and b/App API/img/charmsbar/search-hover.png differ diff --git a/App API/img/charmsbar/search.png b/App API/img/charmsbar/search.png new file mode 100644 index 0000000..d5cea8e Binary files /dev/null and b/App API/img/charmsbar/search.png differ diff --git a/App API/img/charmsbar/settings-hover.png b/App API/img/charmsbar/settings-hover.png new file mode 100644 index 0000000..c8f9820 Binary files /dev/null and b/App API/img/charmsbar/settings-hover.png differ diff --git a/App API/img/charmsbar/settings.png b/App API/img/charmsbar/settings.png new file mode 100644 index 0000000..b63fbc3 Binary files /dev/null and b/App API/img/charmsbar/settings.png differ diff --git a/App API/img/charmsbar/share-hover.png b/App API/img/charmsbar/share-hover.png new file mode 100644 index 0000000..bd3a423 Binary files /dev/null and b/App API/img/charmsbar/share-hover.png differ diff --git a/App API/img/charmsbar/share.png b/App API/img/charmsbar/share.png new file mode 100644 index 0000000..b743bf0 Binary files /dev/null and b/App API/img/charmsbar/share.png differ diff --git a/App API/img/charmsbar/start-hover.png b/App API/img/charmsbar/start-hover.png new file mode 100644 index 0000000..6cc3144 Binary files /dev/null and b/App API/img/charmsbar/start-hover.png differ diff --git a/App API/img/charmsbar/start.png b/App API/img/charmsbar/start.png new file mode 100644 index 0000000..6cf722c Binary files /dev/null and b/App API/img/charmsbar/start.png differ diff --git a/App API/img/charmsbar/startbutton.png b/App API/img/charmsbar/startbutton.png new file mode 100644 index 0000000..db9726d Binary files /dev/null and b/App API/img/charmsbar/startbutton.png differ diff --git a/App API/index.html b/App API/index.html new file mode 100644 index 0000000..84a1ef2 --- /dev/null +++ b/App API/index.html @@ -0,0 +1,104 @@ + + + + + + + + + + + + + + + + +
+ +

Things to do : +
- Customize the settings charms +
- Customize the share charms +
- Customize splashscreen +
- Customize appbar +
- Add some content to the app +
- Read README.txt +
- Fill in the about.txt +
- Make a tile for your app (250x250) +

+ +
+ +
+ Settings
+
+ +
+ Share
+
+ Send
+ Recommend
+
+ + +
+ +
+
+
+
+
+
+
+
+ + + + +
+ +
+
+
+ +
+
+
+
+ + diff --git a/App API/splashscreen.png b/App API/splashscreen.png new file mode 100644 index 0000000..1285e80 Binary files /dev/null and b/App API/splashscreen.png differ -- cgit v1.2.3