You are on page 1of 2

// ==UserScript==

// @name
Facebook Dark Blue Log In Page by Bontimedia Dev.
// @namespace
http://userstyles.org
// @description Facebook Dark Blue Log In Page by Bontimedia Dev.
// @author
Bontimedia Developers
// @homepage
https://userstyles.org/styles/116868
// @include
http://facebook.com/*
// @include
https://facebook.com/*
// @include
http://*.facebook.com/*
// @include
https://*.facebook.com/*
// @run-at
document-start
// @version
0.20150725002054
// ==/UserScript==
(function() {var css = [
"body.fbIndex { ",
"background: url(\'http://s7.postimg.org/dqk0mitrf/facebook_background.j
pg\')right center fixed !important; ",
"-webkit-background-size: cover; ",
"-moz-background-size: 100% !important; ",
"background-repeat: no-repeat !important;",
"background-size: cover !important;",
"overflow:hidden !important;",
"}",
"",
".loggedout_menubar_container { background: url(\'http://fiakka.com/imag
es/blank_transparent.png\') !important; }",
".fbIndex #globalContainer #dropmenu_container,",
".fbIndex #globalContainer #content,",
".fbIndex #globalContainer #pageFooter { display: none !important }",
"",
"",
".fbIndex .loggedout_menubar_container {",
" position: fixed !important;",
" width: 420px !important;",
" height: 82px !important;",
" min-width: 0 !important;",
" top: 61% !important;",
" left: 51% !important;",
" margin-top: -17px !important;",
" margin-left: -210px !important;",
" z-index: -1 !important;",
"}",
"",
"",
".fbIndex .loggedout_menubar { width: auto !important }",
".fbIndex .loggedout_menubar_container .lfloat,",
".fbIndex .loggedout_menubar_container .rfloat { float: none !important
}",
".fbIndex .loggedout_menubar_container .lfloat img,",
".fbIndex .loggedout_menubar_container .rfloat #login_form table { displ
ay: block !important; margin: 0 auto !important }",
"",
".fbIndex .loggedout_menubar_container .lfloat img { display: block; mar
gin: -60px auto 20px !important; }",
"",
"._5a-- { display: none !important }",
"",
".sp_vwFYzAzFvx7.sx_d2b4cf {",
"
display: none !important",
"}",

"",
".sp_ibqa2oLQa-y.sx_e3a4c3 {",
"
display: none !important",
"}"
].join("\n");
if (typeof GM_addStyle != "undefined") {
GM_addStyle(css);
} else if (typeof PRO_addStyle != "undefined") {
PRO_addStyle(css);
} else if (typeof addStyle != "undefined") {
addStyle(css);
} else {
var node = document.createElement("style");
node.type = "text/css";
node.appendChild(document.createTextNode(css));
var heads = document.getElementsByTagName("head");
if (heads.length > 0) {
heads[0].appendChild(node);
} else {
// no head yet, stick it whereever
document.documentElement.appendChild(node);
}
}
})();

You might also like