templates/layouts/layouts_emails/skin_default.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4.     <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
  5.     <meta name="viewport" content="width=device-width"/>
  6.     <style type="text/css">
  7.         * {
  8.             margin: 0;
  9.             padding: 0;
  10.             font-size: 100%;
  11.             font-family: 'Avenir Next', "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
  12.             line-height: 1.65;
  13.         }
  14.         img {
  15.             width: 100%;
  16.         }
  17.         body {
  18.             width: 100% !important;
  19.             height: 100%;
  20.             background: #f8f8f8;
  21.         }
  22.         a {
  23.             color: #c9242d;
  24.             text-decoration: none;
  25.         }
  26.         a:hover {
  27.             text-decoration: underline;
  28.         }
  29.         .text-center {
  30.             text-align: center;
  31.         }
  32.         .text-right {
  33.             text-align: right;
  34.         }
  35.         .text-left {
  36.             text-align: left;
  37.         }
  38.         .button {
  39.             display: inline-block;
  40.             color: white;
  41.             background: #71bc37;
  42.             border: solid #71bc37;
  43.             border-width: 10px 20px 8px;
  44.             font-weight: bold;
  45.             border-radius: 4px;
  46.         }
  47.         .button:hover {
  48.             text-decoration: none;
  49.         }
  50.         h1, h2, h3, h4, h5, h6 {
  51.             margin-bottom: 20px;
  52.             line-height: 1.25;
  53.         }
  54.         h1 {
  55.             font-size: 32px;
  56.         }
  57.         h2 {
  58.             font-size: 28px;
  59.         }
  60.         h3 {
  61.             font-size: 24px;
  62.         }
  63.         h4 {
  64.             font-size: 20px;
  65.         }
  66.         h5 {
  67.             font-size: 16px;
  68.         }
  69.         p, ul, ol {
  70.             font-size: 16px;
  71.             font-weight: normal;
  72.             margin-bottom: 20px;
  73.         }
  74.         .container {
  75.             display: block !important;
  76.             clear: both !important;
  77.             margin: auto !important;
  78.             width: 580px !important;
  79.             border-collapse: collapse;
  80.         }
  81.         .container .content {
  82.             background: white;
  83.             padding: 30px 35px;
  84.         }
  85.         .container .content.footer {
  86.             background: none;
  87.         }
  88.         .container .content.footer p {
  89.             margin-bottom: 0;
  90.             color: #888;
  91.             text-align: center;
  92.             font-size: 14px;
  93.         }
  94.         .container .content.footer a {
  95.             color: #888;
  96.             text-decoration: none;
  97.             font-weight: bold;
  98.         }
  99.         .container .content.footer a:hover {
  100.             text-decoration: underline;
  101.         }
  102.         .container .table {
  103.             width: 100%;
  104.         }
  105.         .container .table tr {
  106.             border-bottom: solid 1px #a6a6a6;
  107.         }
  108.         .blockquote {
  109.             padding: 10px !important;
  110.             background-color: #EEE;
  111.         }
  112.         .text {
  113.             text-align: justify;
  114.         }
  115.     </style>
  116. </head>
  117. <body>
  118. <div style="width: 580px; margin: 0px auto;">
  119.     <table class="container">
  120.         <tr>
  121.             <td align="center">
  122.                 <img src="cid:header" width="580" border="0" alt=""/>
  123.             </td>
  124.         </tr>
  125.         <tr>
  126.             <td class="content">
  127.                 {{ content|raw }}
  128.             </td>
  129.         </tr>
  130.     </table>
  131. </div>
  132. </body>
  133. </html>