e0c9c37b by Jeff Balicki

ee

1 parent fb9eaa6c
...@@ -69,6 +69,11 @@ body.login { ...@@ -69,6 +69,11 @@ body.login {
69 margin-top: 9%; 69 margin-top: 9%;
70 pointer-events: none; 70 pointer-events: none;
71 } 71 }
72
73 #login h1:lang(fr-CA) {
74 margin-left: 31%;
75 font-size: 30px;
76 }
72 } 77 }
73 78
74 #backtoblog:before { 79 #backtoblog:before {
...@@ -179,6 +184,8 @@ label { ...@@ -179,6 +184,8 @@ label {
179 font-size: 11px; 184 font-size: 11px;
180 } 185 }
181 186
187
188
182 #nav { 189 #nav {
183 text-shadow: none; 190 text-shadow: none;
184 text-shadow: 0px; 191 text-shadow: 0px;
...@@ -220,7 +227,12 @@ label { ...@@ -220,7 +227,12 @@ label {
220 display: block; 227 display: block;
221 position: relative; 228 position: relative;
222 right: 0px; 229 right: 0px;
223 margin-left: 50px !important; 230 margin-left: 0px !important;
231 }
232
233
234 label:lang(fr-CA) {
235 margin-left: 0px !important;
224 } 236 }
225 237
226 #user_pass, 238 #user_pass,
...@@ -233,6 +245,7 @@ label { ...@@ -233,6 +245,7 @@ label {
233 background: transparent; 245 background: transparent;
234 box-shadow: none; 246 box-shadow: none;
235 border-bottom: 1px solid #221D58; 247 border-bottom: 1px solid #221D58;
248 border-radius: 0px;
236 width: 300px; 249 width: 300px;
237 } 250 }
238 251
......
...@@ -9,10 +9,16 @@ jQuery(document).ready(function ($) { ...@@ -9,10 +9,16 @@ jQuery(document).ready(function ($) {
9 first.toLowerCase(); 9 first.toLowerCase();
10 10
11 first = first.split("/")[1]; 11 first = first.split("/")[1];
12 var lang = document.documentElement.lang;
12 13
13 if (first == "wp-login.php") { 14 if (first == "wp-login.php") {
14 $('h1').addClass('login_h1'); 15 if (lang == "fr-CA") {
15 $('h1').html('LOG <span class="dark">IN:</span>'); 16 $('h1').addClass('login_h1');
17 $('h1').html("s'identifier");
18 } else {
19 $('h1').addClass('login_h1');
20 $('h1').html('LOG <span class="dark">IN:</span>');
21 }
16 } else if (first = 'lostpassword') { 22 } else if (first = 'lostpassword') {
17 $('h1').addClass('login_h1'); 23 $('h1').addClass('login_h1');
18 $('h1').html('RESET</br> <span class="dark">PASSWORD:</span>'); 24 $('h1').html('RESET</br> <span class="dark">PASSWORD:</span>');
......