main.html 393 B

1234567891011121314151617181920212223
  1. <style>
  2. .mainPage{
  3. background-image: url(img/sicura.png), url(img/findomestic.png);
  4. background-position: left top, right bottom;
  5. background-repeat: no-repeat;
  6. /*width:100%;*/
  7. height:100%;
  8. }
  9. /* Portrait tablets and small desktops */
  10. @media (max-width: 720px) {
  11. .mainPage {
  12. background-image: none;
  13. }
  14. }
  15. </style>
  16. <div class="mainPage">
  17. </div>