aboutsummaryrefslogtreecommitdiff
path: root/apps/firefox/css
diff options
context:
space:
mode:
authorUnknown <Alee14498@gmail.com>2017-10-01 00:24:20 -0400
committerUnknown <Alee14498@gmail.com>2017-10-01 00:24:20 -0400
commit78f3c0e9893d36e0ce039c2b79ede8a92ebe468a (patch)
tree8479930f9372a1e9998b6750651565cf52b81ca8 /apps/firefox/css
parentd8ba59582c137de474789690e777d8c029e08fe6 (diff)
downloadwindows8online-78f3c0e9893d36e0ce039c2b79ede8a92ebe468a.tar.gz
windows8online-78f3c0e9893d36e0ce039c2b79ede8a92ebe468a.tar.bz2
windows8online-78f3c0e9893d36e0ce039c2b79ede8a92ebe468a.zip
Adding the code
Diffstat (limited to 'apps/firefox/css')
-rw-r--r--apps/firefox/css/charms.css218
-rw-r--r--apps/firefox/css/style.css176
2 files changed, 394 insertions, 0 deletions
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