Commit 0a91afdf1ba35de1d6daad326f206374daf6c5f2
1 parent
53d902e2cb
Exists in
master
and in
1 other branch
minor change
Showing
2 changed files
with
33 additions
and
20 deletions
Show diff stats
css/custom.css
... | ... | @@ -478,10 +478,10 @@ stroke-dashoffset:0 |
478 | 478 | } |
479 | 479 | |
480 | 480 | #front { |
481 | - background-image: url(/images/mock_up_background.jpg); | |
481 | + /*background-image: url(/images/mock_up_background.jpg); | |
482 | 482 | background-repeat: no-repeat; |
483 | 483 | background-size: cover; |
484 | - background-attachment: fixed; | |
484 | + background-attachment: fixed;*/ | |
485 | 485 | } |
486 | 486 | |
487 | 487 | /* .footer { |
... | ... | @@ -1380,29 +1380,15 @@ table { |
1380 | 1380 | filter: alpha(opacity=80); /* For IE8 and earlier */ |
1381 | 1381 | } |
1382 | 1382 | #front { |
1383 | - background-image: url(/images/mock_up_background.jpg); | |
1383 | + /*background-image: url(/images/mock_up_background.jpg); | |
1384 | 1384 | background-repeat: no-repeat; |
1385 | 1385 | background-attachment:fixed; |
1386 | - /*background-position: top center;*/ | |
1387 | - -webkit-background-attachment: fixed; | |
1388 | - background-size: 400% auto; | |
1389 | - -webkit-background-size:400% auto; | |
1390 | - } | |
1391 | - .bg_dots{ | |
1392 | - position: absolute; | |
1393 | - left:0; | |
1394 | - right:0; | |
1395 | - top:0; | |
1396 | - height: 700px; | |
1397 | 1386 | background-position: top center; |
1398 | - background-image: url(/images/mock_up_background.jpg); | |
1399 | - background-repeat: no-repeat; | |
1400 | - /*background-attachment:fixed;*/ | |
1401 | - /*background-position: top center;*/ | |
1402 | 1387 | -webkit-background-attachment: fixed; |
1403 | - background-size: 100% auto; | |
1404 | - -webkit-background-size:100% auto; | |
1388 | + background-size: 400% auto; | |
1389 | + -webkit-background-size:400% auto;*/ | |
1405 | 1390 | } |
1391 | + | |
1406 | 1392 | } |
1407 | 1393 | |
1408 | 1394 | @media screen and (max-device-width: 991px) and (orientation: landscape){ | ... | ... |
index.html
... | ... | @@ -52,6 +52,33 @@ j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= |
52 | 52 | <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-KCXPCKF" |
53 | 53 | height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> |
54 | 54 | <!-- End Google Tag Manager (noscript) --> |
55 | + <div class="bg_dots"></div> | |
56 | + <style> | |
57 | + .bg_dots{ | |
58 | + position: absolute; | |
59 | + left:0; | |
60 | + right:0; | |
61 | + top:0; | |
62 | + height: 700px; | |
63 | + background-position: top center; | |
64 | + background-image: url(/images/mock_up_background.jpg); | |
65 | + background-repeat: no-repeat; | |
66 | + background-size: 100% auto; | |
67 | + -webkit-background-size:100% auto; | |
68 | + } | |
69 | + .stage-shadow{ | |
70 | + background:transparent; | |
71 | + } | |
72 | + @media screen and (max-width:767px){ | |
73 | + .bg_dots{ | |
74 | + height:80%; | |
75 | + background-size: 300% auto; | |
76 | + -webkit-background-size:300% auto; | |
77 | + position:fixed; | |
78 | + top:0; | |
79 | + } | |
80 | + } | |
81 | + </style> | |
55 | 82 | <div id="main"> |
56 | 83 | <div ng-view id="front"></div> |
57 | 84 | </div> | ... | ... |