Skip to content

Instantly share code, notes, and snippets.

@istvan-ujjmeszaros
Last active August 8, 2020 00:17
Show Gist options
  • Save istvan-ujjmeszaros/79aa05ab0919bf8ff078a37ed8922c87 to your computer and use it in GitHub Desktop.
Save istvan-ujjmeszaros/79aa05ab0919bf8ff078a37ed8922c87 to your computer and use it in GitHub Desktop.
Email experiment without inline styles, + dark mode hack with background images
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<!--[if !mso]><!-->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!--<![endif]-->
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<meta name="x-apple-disable-message-reformatting">
<title></title>
<style type="text/css">
table {
width: 100%;
border-collapse:collapse;
}
table.width-auto {
width: auto;
}
td.width-600 {
width: 600px;
}
td.bg-darkblue{
font-size:20px;
line-height:24px;
font-weight:bold;
font-family:Georgia,serif;
padding:30px 10px;
text-align:center;
color:#ffffff;
background-image:url(https://cdn.virtuosoft.eu/e/nyh/200804/bg-darkblue.png);
background-size:cover;
background-color:#04688f;
}
td.bg-orange{
padding:50px 20px 200px 20px;
font-size:0;
line-height:0;
color:#ffffff;
background-image:url(https://cdn.virtuosoft.eu/e/nyh/200804/bg-orange.png);
background-size:cover;
background-color:#fcba34;
}
[data-ogsc] .bg-darkblue{background-color:#04688f!important;color:#ffffff!important;}
[data-ogsb] .bg-darkblue{background-color:#04688f!important;color:#ffffff!important;}
[data-ogsc] .bg-orange{background-color:#fcba34!important;color:#ffffff!important;}
[data-ogsb] .bg-orange{background-color:#fcba34!important;color:#ffffff!important;}
@media (prefers-color-scheme:dark ){
.bg-darkblue{background-color:#04688f!important;color:#ffffff!important;}
.bg-orange{background-color:#fcba34!important;color:#ffffff!important;}
}
</style>
</head>
<body>
<table style="width:100%;">
<tr>
<td align="center">
<table class="width-auto" style="width:auto;">
<tr>
<td class="width-600" align="center">
<table>
<tr>
<td class="bg-orange">
<table>
<tr>
<td class="bg-darkblue" style="color:#ffffff;">
Lorem ipsum
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
@istvan-ujjmeszaros
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment