Skip to content
Snippets Groups Projects
offline.html 1.71 KiB
Newer Older
  • Learn to ignore specific revisions
  • Bastien DUMONT's avatar
    Bastien DUMONT committed
    <html lang="en">
    
      <head>
        <meta charset="UTF-8" />
        <meta name="viewport" content="width=device-width, initial-scale=1.0" />
        <meta
          name="description"
          content="Ecolyo est le service proposé par la Métropole de Lyon pour suivre et comprendre la consommation énergétique globale de votre foyer."
        />
    
        <meta
          http-equiv="Content-Security-Policy"
          content="style-src 'self' https://fonts.googleapis.com; font-src 'self' https://fonts.gstatic.com;"
        />
    
        <link rel="stylesheet" href="./style.css" />
        <link
          href="https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&display=swap"
          rel="stylesheet"
        />
        <link rel="icon" href="assets/icon.svg" />
        <title>Ecolyo</title>
        <style type="text/css">
          * {
            margin: 0;
            line-height: 1;
            font-family: 'Lato', sans-serif;
            color: white;
          }
          html,
          body {
            height: 100%;
            margin: auto;
            background: #121212;
          }
          p {
            margin-top: 1rem;
          }
          .container {
            height: 100%;
            display: flex;
            align-items: center;
            text-align: center;
            justify-content: center;
          }
          .text-16-white {
            font-weight: 900;
            font-size: 1rem;
            color: white;
          }
        </style>
      </head>
      <body>
        <nav></nav>
        <div class="container">
          <section>
    
            <img src="./icon.svg" alt="logo Ecolyo" height="80px" width="80px" />
    
            <p class="text-16-white">Hors ligne</p>
            <p class="text-16-white">
              Vérifiez votre connexion pour lancer Ecolyo.
            </p>
          </section>
        </div>
        <footer></footer>
      </body>
    
    Bastien DUMONT's avatar
    Bastien DUMONT committed
    </html>