J

James Howard's Technotif

Technotif - Technology Tips, Reviews, and Tutorials.

  • Rated1.7/ 5
  • Updated 8 Years Ago

Captcha html, body { height: 100%; } .wraper { padding-bottom: 56px; position: relative; min-height: 100%; } .invisible_mode .wraper { display: none; } .header { height: 63px; background-color: white; } .middle { height: 186px; background-color: rgba(55, 171, 99, 0.75); } .bottom { background-color: #f2f2f2; position: absolute; bottom: 0px; top: 249px; width: 100%; } .captcha_absolute { margin-top: -153px; } .captcha_div { width: 485px; margin: 0 auto; box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.18), 0 0 8px 0 rgba(0, 0, 0, 0.12); background-color: white; padding: 47px 48px 18px 48px; position: relative; } .cap_head { border-bottom: 1px solid #d8d8d8; padding-bottom: 17px; margin: 0 10px 20px 10px; } .logo_shield { display: inline-block; } .logo_shield img { width: 54px; height: 72px; } .cap_side { width: 295px; } h4#text { font-size: 20px; line-height: 1.38; color: #000000; font-weight: bold; font-family: Noto Sans, sans-serif; margin: 6px 0 0 0; } .cap_text { font-family: Noto Sans, sans-serif; font-weight: normal; font-style: normal; font-stretch: normal; line-height: 1.65; color: #000000; } p.cap_note { font-size: 20px; margin: 0; } .captcha_passed h4#text, .captcha_passed p.cap_note { font-size: 18px } .cap_mess { font-size: 13px; } .powered_span { position: absolute; bottom: 15px; width: 100%; text-align: center; height: 18px; opacity: 0.45; font-family: Noto Sans; font-size: 13px; font-weight: normal; font-style: normal; font-stretch: normal; color: #1d1d1d; } /* A few hacks for re-captcha */ .invisible_mode .re-captcha-wrapper { /* shift reCAPTCHA below our text */ top: 350px !important; } .invisible_mode .re-captcha-wrapper > div:first-child { /* hide reCAPTCHA mask */ display: none !important; } .visible_mode #re-captcha { /* align to center */ width: 305px; margin: 0 auto; } /* Imunify360 preloader */ .big_loader { position: absolute; left: 0; right: 0; top: 50%; width: 90px; height: 90px; margin: -45px auto 0 auto; opacity: 0.55; } .visible_mode .big_loader { display: none; } .rot { -webkit-animation: spin 2s ease-in-out infinite; animation: spin 2s ease-in-out infinite } @keyframes spin { 0% { -webkit-transform: rotate(0deg); -moz-transform: rotate(0deg); -ms-transform: rotate(0deg); -o-transform: rotate(0deg); transform: rotate(0deg); } 100% { -webkit-transform: rotate(360deg); -moz-transform: rotate(360deg); -ms-transform: rotate(360deg); -o-transform: rotate(360deg); transform: rotate(360deg); } } .dropdown { position: absolute; top: 10px; right: 0; } .dropdown .dropdown-toggle { background-color: #fff; border: none; outline: none; color: #858585; font-size: 13px; height: 32px; line-height: 1; transition: all 0.4s; font-family: 'Noto Sans', sans-serif; margin-right: 22px; } .dropdown .dropdown-toggle:hover { background-color: #e7e7e7; } .dropdown .dropdown-menu-content { background-color: #ffffff; box-shadow: 0 2px 14px 0 rgba(0, 0, 0, 0.24); border-width: 0px; border-radius: 0; padding: 11px 0 0; overflow-y: scroll; max-height: 365px; margin: 0; } .dropdown .glyphicon { margin-left: 6px; top: 2px; transition: 0.3s all; } .dropdown li { height: 35px; text-align: left; padding-left: 24px; font-size: 13px; color: #4d4d4e; line-height: 2.85; font-family: 'Noto Sans', sans-serif; } .dropdown li:last-child { margin-bottom: 14px; } .dropdown li.active { font-weight: bold; } .dropdown li:focus, .dropdown li:hover { color: #4d4d4e; background-color: rgba(56, 171, 99, 0.11); } .dropdown .dropdown-menu-content > li:hover { cursor: pointer; } .dropdown .dropdown-menu-container { max-height: 365px; overflow: hidden; width: 164px; padding: 0; border: 0; border-radius: 0; box-shadow: 0 2px 14px 0 rgba(0, 0, 0, 0.24); z-index: 5000000000; } .dropdown.open .glyphicon { transform: rotate(180deg); } window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'UA-158761310-1'); Powered by Imunify360 English (function () { var items = { English: 'en', Dutch: 'nl', Ukrainian: 'uk', Arabic: 'ar', Italian: 'it', Chinese: 'zh', Polish: 'pl', Danish: 'da', Hungarian: 'hu', Russian: 'ru', French: 'fr', Spanish: 'es', Romanian: 'ro', Greek: 'el', Swedish: 'sv', Turkish: 'tr', Indonesian: 'id', Portuguese: 'pt', Hebrew: 'he', German: 'de', Malay: 'ms', }; var currentLocale = $('html').attr('lang'); var currentLocaleName = Object.keys(items).find(function (key) { return items[key] === currentLocale; }); $('.dropdown-title').text(currentLocaleName); $('.dropdown-menu-content') .append(Object.keys(items).sort().map(function (item) { return $('').text(item); })) .click(function (e) { var nextLocaleName = e.target.innerText; if (nextLocaleName === currentLocaleName) { e.stopPropagation(); } else { document.cookie = 'locale=' + items[nextLocaleName] + ';path=/'; location.reload(true); } }); $([].find.call($('.dropdown-menu li'), function (item) { return item.innerText === currentLocaleName; })).addClass('active'); function insertParam(key, value) { key = encodeURIComponent(key); value = encodeURIComponent(value); var kvp = document.location.search.substr(1).split('&'); if (kvp == '') { document.location.search = '?' + key + '=' + value; } else { var i = kvp.length; var x; while (i--) { x = kvp[i].split('='); if (x[0] === key) { x[1] = value; kvp[i] = x.join('='); break; } } if (i < 0) { kvp[kvp.length] = [key, value].join('='); } //this will reload the page, it's likely better to store this until finished document.location.search = kvp.join('&'); } } })(); technotif.com is protected by Imunify360 We have noticed an unusual activity from your IP 54.165.90.203 and blocked access to this website. Please confirm that you are not a robot Loader

Updated 9 Years Ago

Captcha        Html, Body { Height: 100%; } .wraper { Padding-bottom: 56px; Position: Relative; Min-height: 100%; } .invisible_mode .wraper { Display: None; } .header { Height: 63px; Background-color: White; } .middle { Height: 186px; Background-color: Rgba(55, 171, 99, 0.75); } .bottom { Background-color: #f2f2f2; Position: Absolute; Bottom: 0px; Top: 249px; Width: 100%; } .captcha_absolute { Margin-top: -153px; } .captcha_div { Width: 485px; Margin: 0 Auto; Box-shadow: 0 5px 8px 0 Rgba(0, 0, 0, 0.18), 0 0 8px 0 Rgba(0, 0, 0, 0.12); Background-color: White; Padding: 47px 48px 18px 48px; Position: Relative; } .cap_head { Border-bottom: 1px Solid #d8d8d8; Padding-bottom: 17px; Margin: 0 10px 20px 10px; } .logo_shield { Display: Inline-block; } .logo_shield Img { Width: 54px; Height: 72px; } .cap_side { Width: 295px; } H4#text { Font-size: 20px; Line-height: 1.38; Color: #000000; Font-weight: Bold; Font-family: Noto Sans, Sans-serif; Margin: 6px 0 0 0; } .cap_text { Font-family: Noto Sans, Sans-serif; Font-weight: Normal; Font-style: Normal; Font-stretch: Normal; Line-height: 1.65; Color: #000000; } P.cap_note { Font-size: 20px; Margin: 0; } .captcha_passed H4#text, .captcha_passed P.cap_note { Font-size: 18px } .cap_mess { Font-size: 13px; } .powered_span { Position: Absolute; Bottom: 15px; Width: 100%; Text-align: Center; Height: 18px; Opacity: 0.45; Font-family: Noto Sans; Font-size: 13px; Font-weight: Normal; Font-style: Normal; Font-stretch: Normal; Color: #1d1d1d; } /* A Few Hacks For Re-captcha */ .invisible_mode .re-captcha-wrapper { /* Shift ReCAPTCHA Below Our Text */ Top: 350px !important; } .invisible_mode .re-captcha-wrapper > Div:first-child { /* Hide ReCAPTCHA Mask */ Display: None !important; } .visible_mode #re-captcha { /* Align To Center */ Width: 305px; Margin: 0 Auto; } /* Imunify360 Preloader */ .big_loader { Position: Absolute; Left: 0; Right: 0; Top: 50%; Width: 90px; Height: 90px; Margin: -45px Auto 0 Auto; Opacity: 0.55; } .visible_mode .big_loader { Display: None; } .rot { -webkit-animation: Spin 2s Ease-in-out Infinite; Animation: Spin 2s Ease-in-out Infinite } @keyframes Spin { 0% { -webkit-transform: Rotate(0deg); -moz-transform: Rotate(0deg); -ms-transform: Rotate(0deg); -o-transform: Rotate(0deg); Transform: Rotate(0deg); } 100% { -webkit-transform: Rotate(360deg); -moz-transform: Rotate(360deg); -ms-transform: Rotate(360deg); -o-transform: Rotate(360deg); Transform: Rotate(360deg); } }   .dropdown { Position: Absolute; Top: 10px; Right: 0; } .dropdown .dropdown-toggle { Background-color: #fff; Border: None; Outline: None; Color: #858585; Font-size: 13px; Height: 32px; Line-height: 1; Transition: All 0.4s; Font-family: Li:hover { Cursor: Pointer; } .dropdown .dropdown-menu-container { Max-height: 365px; Overflow: Hidden; Width: 164px; Padding: 0; Border: 0; Border-radius: 0; Box-shadow: 0 2px 14px 0 Rgba(0, 0, 0, 0.24); Z-index: 5000000000; } .dropdown.open .glyphicon { Transform: Rotate(180deg); } Window.dataLayer = Window.dataLayer || []; Function Gtag(){dataLayer.push(arguments);} Gtag('js', New Date()); Gtag('config', 'UA-158761310-1'); Powered By Imunify360 English (function () { Var Items = { English: 'en', Dutch: 'nl', Ukrainian: 'uk', Arabic: 'ar', Italian: 'it', Chinese: 'zh', Polish: 'pl', Danish: 'da', Hungarian: 'hu', Russian: 'ru', French: 'fr', Spanish: 'es', Romanian: 'ro', Greek: 'el', Swedish: 'sv', Turkish: 'tr', Indonesian: 'id', Portuguese: 'pt', Hebrew: 'he', German: 'de', Malay: 'ms', }; Var CurrentLocale = $('html').attr('lang'); Var CurrentLocaleName = Object.keys(items).find(function (key) { Return Items[key] === CurrentLocale; }); $('.dropdown-title').text(currentLocaleName); $('.dropdown-menu-content') .append(Object.keys(items).sort().map(function (item) { Return $('').text(item); })) .click(function (e) { Var NextLocaleName = E.target.innerText; If (nextLocaleName === CurrentLocaleName) { E.stopPropagation(); } Else { Document.cookie = 'locale=' + Items[nextLocaleName] + ';path=/'; Location.reload(true); } }); $([].find.call($('.dropdown-menu Li'), Function (item) { Return Item.innerText === CurrentLocaleName; })).addClass('active'); Function InsertParam(key, Value) { Key = EncodeURIComponent(key); Value = EncodeURIComponent(value); Var Kvp = Document.location.search.substr(1).split('&'); If (kvp == '') { Document.location.search = '?' + Key + '=' + Value; } Else { Var I = Kvp.length; Var X; While (i--) { X = Kvp[i].split('='); If (x[0] === Key) { X[1] = Value; Kvp[i] = X.join('='); Break; } } If (i < 0) { Kvp[kvp.length] = [key, Value].join('='); } //this Will Reload The Page, It's Likely Better To Store This Until Finished Document.location.search = Kvp.join('&'); } } })(); Technotif.com Is Protected By Imunify360 We Have Noticed An Unusual Activity From Your IP 54.165.90.203 And Blocked Access To This Website. Please Confirm That You Are Not A Robot Loader'>
Read More
...