templates/home/index.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}Home PayeTonKawa{% endblock %}
  3. {% block stylesheets %}
  4. <style>
  5.     /* Custom CSS */
  6.     html, body {
  7.         color: #FFFFFF;
  8.         margin: auto 0;
  9.         min-height: 900px;
  10.         background: hsla(54, 100%, 50%, 1);
  11.         background: linear-gradient(90deg, hsla(54, 100%, 50%, 1) 0%, hsla(285, 100%, 32%, 1) 34%, hsla(261, 55%, 18%, 1) 72%, hsla(259, 58%, 9%, 1) 100%);
  12.         background: -moz-linear-gradient(90deg, hsla(54, 100%, 50%, 1) 0%, hsla(285, 100%, 32%, 1) 34%, hsla(261, 55%, 18%, 1) 72%, hsla(259, 58%, 9%, 1) 100%);
  13.         background: -webkit-linear-gradient(90deg, hsla(54, 100%, 50%, 1) 0%, hsla(285, 100%, 32%, 1) 34%, hsla(261, 55%, 18%, 1) 72%, hsla(259, 58%, 9%, 1) 100%);
  14.         filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#FFE500", endColorstr="#7B00A4", GradientType=1 );
  15.     }
  16.     button {
  17.         border-color: #020344;
  18.         background: hsla(239, 94%, 14%, 1);
  19.         background: linear-gradient(227deg, hsl(216deg 98% 53%) 0%, hsl(0deg 0% 51%) 100%);
  20.         background: -moz-linear-gradient(227deg, hsla(216deg 98% 53%) 0%, hsla(0deg 0% 51%) 100%);
  21.         background: -webkit-linear-gradient(227deg, hsla(216deg 98% 53%) 0%, hsla(0deg 0% 51%) 100%);
  22.     }
  23.     button:hover {
  24.         border-color: #020344;
  25.         background: hsla(239, 94%, 14%, 1);
  26.         background: linear-gradient(227deg, hsl(216deg 59% 54%) 0%, hsl(0deg 0% 51%) 100%);
  27.         background: -moz-linear-gradient(227deg, hsla(216deg 59% 54%) 0%, hsla(0deg 0% 51%) 100%);
  28.         background: -webkit-linear-gradient(227deg, hsla(216deg 59% 54%) 0%, hsla(0deg 0% 51%) 100%);
  29.         box-shadow: 0px 4px 0px yellow;
  30.     }
  31.     .shadow:hover {
  32.         text-shadow: 0px 2px 0px lawngreen;
  33.         transition-delay: 100ms;
  34.     }
  35.     p, label {
  36.         color: #FFFFFF;
  37.         text-shadow: 1px 2px 1px black;
  38.     }
  39.     small {
  40.         text-shadow: 1px 1px 1px black;
  41.     }
  42.     h2,h3,h4 {
  43.         color: #FFFFFF;
  44.         text-shadow: 2px 4px 2px black;
  45.     }
  46.     h1, .yellow {
  47.         color: yellow;
  48.         text-shadow: 2px 4px 2px black;
  49.     }
  50.     .yellowBackg {
  51.         background-color: yellow;
  52.     }
  53.     .violetBackg {
  54.         background-color: #130a26;
  55.     }
  56.     .logo {
  57.         text-align: center;
  58.     }
  59.     .social-icons {
  60.         margin-top: 2em;
  61.     }
  62.     .social-icons a {
  63.         padding: 0 0.5em;
  64.     }
  65.     .footer {
  66.         /*background-color: #130a26;
  67.         padding-top: 2em;
  68.         padding-bottom: 0.5em;*/
  69.     }
  70. </style>
  71. {% endblock %}
  72. {% block body %}
  73.     <div class="container w-50 mx-auto text-center">
  74.         <div class="container mx-auto my-3">
  75.             <h1 class="mx-auto">MSPR-MCA</h1>
  76.             <img class='logo my-3' src='https://mspr-mca.dev-integration-altman-69.fr/public/assets/img/payeTonKawa_logo.png'  alt='ptk_logo' style='width:300px;'/>
  77.             <h3 class="py-2 text-center"><a class="text-decoration-none shadow" href="{{ path('app_dataHome') }}">Interface DEV</a></h3>
  78.         </div>
  79.         <div class="container mx-auto my-3">
  80.             <div class='social-icons'>
  81.                 <a href='https://facebook.com/ptk'><img src='https://mspr-mca.dev-integration-altman-69.fr/public/assets/img/facebook.png'  alt='fb_logo' style='width:25px;'/></a>
  82.                 <a href='https://twitter.com/ptk'><img src='https://mspr-mca.dev-integration-altman-69.fr/public/assets/img/twitter.png'  alt='tw_logo' style='width:25px;'/></a>
  83.                 <a href='https://linkedin.com/ptk'><img src='https://mspr-mca.dev-integration-altman-69.fr/public/assets/img/linkedin.png'  alt='lk_logo' style='width:25px;'/></a>
  84.             </div>
  85.             <div class='footer'>
  86.                 <img class='logo my-3' src='https://mspr-mca.dev-integration-altman-69.fr/public/assets/img/epsi.png'  alt='ptk_logo' style='width:200px;'/>
  87.                 <p><small class=''>www.payeTonKawa.fr</small></p>
  88.                 <p><small class='' style='margin-bottom:0;'>Copyright @2022-2023  - PayeTonKawa - All Rights Reserved.</small></p>
  89.             </div>
  90.         </div>
  91.     </div>
  92. {% endblock %}