templates/accueil/index.html.twig line 1

  1. {% extends 'base.html.twig' %}
  2. {% block style %}
  3.     @media screen and (min-width: 1000px) {
  4.         #textpresentation {
  5.             padding-top:40px !important;
  6.         }
  7.     }
  8.     @media screen and (max-width: 650px) {
  9.         #textpresentation {
  10.             padding-top:80px !important;
  11.         }
  12.     }
  13.     #photoaccueil {
  14.         position: relative;
  15.         overflow: hidden;
  16.     }
  17.     #photoaccueil video {
  18.         position: absolute;
  19.         top: 0;
  20.         left: 0;
  21.         width: 100%;
  22.         height: 100%;
  23.         z-index: -1;
  24.         object-fit: cover;
  25.     }
  26.     .container {
  27.         color:white;
  28.         margin-top: 20px;
  29.         overflow: hidden;
  30.     }
  31.     #textpresentation {
  32.         flex-grow:1;
  33.         background: linear-gradient(to right, rgba(13, 13, 13,0.8), transparent);
  34.         padding: 10px;
  35.         padding-left:50px;
  36.     }
  37. {% endblock %}
  38. {% block body %}
  39.     <link href="https://fonts.googleapis.com/css2?family=Love+Ya+Like+A+Sister&display=swap" rel="stylesheet">
  40.     <div style="display:flex;height: max-content;flex-grow: 1;">
  41.         <div id="photoaccueil" style="flex-grow:1;display:flex">
  42.             <video autoplay loop muted>
  43.                 <source src="{{ asset('img/FondPhoto.mp4') }}" type="video/mp4">
  44.             </video>
  45.             <div id="textpresentation" class="fade-in">
  46.                 <div class="container">
  47.                     <h1 style="font-size:80px;margin-bottom:0px;">MLyshu</h1>
  48.                     <h2 style="font-size:30px;margin-top:20px;">Développeur Web Junior</h2>
  49.                 </div>
  50.                 <p style="color:white;margin-bottom:150px;">Diplômé d'une licence professionnelle WIMSI</p>
  51.                 <a href="{{ path('aboutme') }}" style="background-color:#262626;color:white;padding:20px;border-radius:10px">Découvrez qui je suis</a>
  52.                 <p style="color:white;margin-top:50px;font-style:italic;">*Photo à propriété personnelle. © Tous droits réservés.</p>
  53.             </div>
  54.         </div>
  55.     </div>
  56. {% endblock %}