File tree 1 file changed +18
-3
lines changed
1 file changed +18
-3
lines changed Original file line number Diff line number Diff line change 1
1
<!doctype html>
2
2
< html >
3
3
< head >
4
- < meta name ="viewport " content ="width=980 ">
4
+ < meta name ="viewport " content ="width=device-width, initial-scale=1.0 ">
5
5
< meta charset ="UTF-8 ">
6
6
< base href ="&baseurl& "/>
7
7
< title > &title& - E-Maxx Algorithms</ title >
23
23
< meta name ="google-site-verification " content ="qSnbeMPNVgZ3kIpGVsPIAPIvEdwYSg583kPdwgJtFO8 " />
24
24
< meta name ="yandex-verification " content ="dac3ebdbebe78eec " />
25
25
< style >
26
- body { font-size : 28 px ; }
26
+ body { font-size : 34 px ; }
27
27
@media only screen and (min-device-width : 400px ) {
28
- body { font-size : 20 px ; }
28
+ body { font-size : 24 px ; }
29
29
}
30
30
@media only screen and (min-device-width : 600px ) {
31
31
body { font-size : 14px ; }
32
32
}
33
33
</ style >
34
+ < script >
35
+ window . onresize = function ( ) {
36
+ var w0 = 980 ;
37
+ var w1 = $ ( window ) . width ( ) ;
38
+ if ( w1 < w0 ) {
39
+ var zoom = Math . floor ( w1 * 100 / w0 ) ;
40
+ document . body . style . zoom = "" + zoom + "%" ;
41
+ } else {
42
+ document . body . style . zoom = "" ;
43
+ }
44
+ } ;
45
+ $ ( function ( ) {
46
+ setTimeout ( window . onresize , 350 ) ;
47
+ } ) ;
48
+ </ script >
34
49
</ head >
35
50
< body >
36
51
< div id ="container ">
You can’t perform that action at this time.
0 commit comments