templates/static/home.html.twig line 1

Open in your IDE?
  1. <html>
  2. <head>
  3.     <link rel="preconnect" href="https://fonts.googleapis.com">
  4.     <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  5.     <link
  6.             href="https://fonts.googleapis.com/css2?family=League+Spartan:wght@200&family=Poppins:ital,wght@0,600;1,800&display=swap"
  7.             rel="stylesheet">
  8.     <style>
  9.         body {
  10.             /* background: rgb(4, 58, 0);
  11.             background: linear-gradient(90deg, rgba(4, 58, 0, 1) 0%, rgba(4, 58, 0, 0.8029805672268908) 40%, rgba(4, 58, 0, 1) 100%); */
  12.             height: 100vh;
  13.             font-family: 'League Spartan', sans-serif;
  14.             font-family: 'Poppins', sans-serif;
  15.             font-weight: bold;
  16.         }
  17.         .contentContainer {
  18.             display: flex;
  19.             justify-content: center;
  20.             flex-direction: column;
  21.             align-items: center;
  22.             padding: 10%;
  23.             text-align: center;
  24.             padding-top: 1%;
  25.         }
  26.         .logo img {
  27.             width: 70%;
  28.             margin-top: 10px;
  29.         }
  30.         .storeImages img {
  31.             max-width: 200px;
  32.             margin: 30px;
  33.         }
  34.         .hwImage {
  35.             min-width: 230px;
  36.         }
  37.         .mainText {
  38.             margin-bottom: 70px;
  39.             margin-top: 70px;
  40.             color: #043A00 !important;
  41.             font-size: 19px;
  42.         }
  43.         .lotoImages {
  44.             display: flex;
  45.             justify-content: center;
  46.             margin-top: 50px;
  47.         }
  48.         .lotoImages img {
  49.             max-width: 200px;
  50.             margin: 20px;
  51.             background-color: #fff;
  52.             padding: 10px;
  53.             border-radius: 10px;
  54.             border: 4px solid #043a00;
  55.         }
  56.         .storeImages {
  57.             background-color: #043A00 !important;
  58.         }
  59.         @media (min-width:320px) {
  60.             .contentContainer {
  61.                 height: 100vh;
  62.             }
  63.         }
  64.         @media (min-width:480px) {
  65.             .contentContainer {
  66.                 height: 100vh;
  67.             }
  68.         }
  69.         @media (min-width:600px) {
  70.             .contentContainer {
  71.                 height: 100vh;
  72.             }
  73.         }
  74.         @media (max-width: 800px ) {
  75.             .storeImages a img{
  76.                 min-width: 250px !important;
  77.                 width: 250px !important;
  78.             }
  79.             .lotoImages{
  80.                 flex-wrap: wrap;
  81.             }
  82.             .contentContainer{
  83.                 height: auto !important;
  84.             }
  85.         }
  86.     </style>
  87. </head>
  88. <body>
  89.     <div id="app">
  90.         <div class="contentContainer">
  91.             <div class="logo">
  92.                 <img src="{{asset('assets/img/home/new_logos/Sigla_Color_CMYK_Landscape.jpg')}}" alt="">
  93.             </div>
  94.             <div class="lotoImages">
  95.                 <img src="{{ asset('assets/img/home/new_logos/Loto_6_49_RGB_Color.jpg')}}" alt="">
  96.                 <img src="{{ asset('assets/img/home/new_logos/Loto_5_40_RGB_Color.jpg') }}" alt="">
  97.                 <img src="{{ asset('assets/img/home/new_logos/Joker_RGB_Color.jpg') }}" alt="">
  98.             </div>
  99.             <div class="mainText">
  100.                 <h1>Pentru a cumpara Online, bilete de joc loteristice 6/49, 5/40 si Joker,</br> downloadeaza aplicatia
  101.                     Amparcat.</h1>
  102.             </div>
  103.             <div class="storeImages">
  104.                 <a href="https://apps.apple.com/ro/app/amparcat/id937197269?uo=4&mt=8"><img
  105.                         src="{{ asset('assets/img/home/available_ios_white.png') }}" alt=""></a>
  106.                 <a href="https://play.google.com/store/apps/details?id=com.tapptitude.amparcat&pli=1"><img
  107.                         src="{{ asset('assets/img/home/available_android_white.png') }}" alt=""></a>
  108.                 <a href="https://appgallery.huawei.com/app/C105627061"><img src="{{ asset('assets/img/home/huawei-appgallery1.png') }}" alt=""
  109.                         class="hwImage"></a>
  110.             </div>
  111.         </div>
  112.     </div>
  113. </body>
  114. </html>