123 lines
2.5 KiB
HTML
123 lines
2.5 KiB
HTML
|
|
name = "Default layout birzha"
|
||
|
|
==
|
||
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="en">
|
||
|
|
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
|
<link rel="preconnect" href="https://fonts.gstatic.com">
|
||
|
|
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap" rel="stylesheet">
|
||
|
|
<title>Email template</title>
|
||
|
|
<style type="text/css">
|
||
|
|
body {
|
||
|
|
font-family: 'Poppins', sans-serif;
|
||
|
|
font-size: 14px;
|
||
|
|
color: #000;
|
||
|
|
line-height: 1.4;
|
||
|
|
font-weight: 400;
|
||
|
|
background: #fff;
|
||
|
|
position: relative;
|
||
|
|
-webkit-font-smoothing: antialiased;
|
||
|
|
-moz-font-smoothing: antialiased;
|
||
|
|
}
|
||
|
|
|
||
|
|
#wrapper {
|
||
|
|
margin: 10px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mail {}
|
||
|
|
|
||
|
|
.header {
|
||
|
|
position: relative;
|
||
|
|
}
|
||
|
|
|
||
|
|
.header_bg {
|
||
|
|
position: absolute;
|
||
|
|
top: 0;
|
||
|
|
left: 0;
|
||
|
|
width: 100%;
|
||
|
|
height: 100%;
|
||
|
|
z-index: -1;
|
||
|
|
}
|
||
|
|
|
||
|
|
.header_bg img {
|
||
|
|
width: 100%;
|
||
|
|
height: 100%;
|
||
|
|
object-fit: cover;
|
||
|
|
-o-object-fit: cover;
|
||
|
|
}
|
||
|
|
|
||
|
|
.header_row {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
|
||
|
|
padding: 10px 20px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.logo {
|
||
|
|
width: 44px;
|
||
|
|
height: 44px;
|
||
|
|
margin-right: 20px;
|
||
|
|
position: relative;
|
||
|
|
z-index: 2;
|
||
|
|
}
|
||
|
|
|
||
|
|
.logo img {
|
||
|
|
width: 100%;
|
||
|
|
height: 100%;
|
||
|
|
object-fit: contain;
|
||
|
|
-o-object-fit: contain;
|
||
|
|
}
|
||
|
|
|
||
|
|
.title {
|
||
|
|
font-size: 16px;
|
||
|
|
font-weight: 700;
|
||
|
|
line-height: 1.5;
|
||
|
|
color: #fff;
|
||
|
|
}
|
||
|
|
|
||
|
|
.content {
|
||
|
|
padding: 30px 20px;
|
||
|
|
background: #fff;
|
||
|
|
}
|
||
|
|
|
||
|
|
.content_txt {
|
||
|
|
font-size: 14px;
|
||
|
|
font-weight: 400;
|
||
|
|
line-height: 1.4;
|
||
|
|
margin-bottom: 15px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.content_txt:last-child {
|
||
|
|
margin-bottom: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
@media screen and (max-width: 450px) {
|
||
|
|
.title {
|
||
|
|
width: calc(100% - 54px);
|
||
|
|
font-size: 14px;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
</head>
|
||
|
|
|
||
|
|
<body>
|
||
|
|
|
||
|
|
|
||
|
|
<div id="wrapper" style=" margin: 10px;">
|
||
|
|
<div class="inner">
|
||
|
|
|
||
|
|
|
||
|
|
{{ content|raw }}
|
||
|
|
|
||
|
|
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
</body>
|
||
|
|
|
||
|
|
</html>
|
||
|
|
|