migrate to new git
BIN
web/App_Script/ContentBuilder/.DS_Store
vendored
Normal file
28
web/App_Script/ContentBuilder/.eslintrc.json
Normal file
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"env": {
|
||||
"browser": true,
|
||||
"es6": true
|
||||
},
|
||||
"extends": "eslint:recommended",
|
||||
"parserOptions": {
|
||||
"sourceType": "module"
|
||||
},
|
||||
"rules": {
|
||||
"indent": [
|
||||
"error",
|
||||
4
|
||||
],
|
||||
"linebreak-style": [
|
||||
"error",
|
||||
"unix"
|
||||
],
|
||||
"quotes": [
|
||||
"error",
|
||||
"single"
|
||||
],
|
||||
"semi": [
|
||||
"error",
|
||||
"always"
|
||||
]
|
||||
}
|
||||
}
|
||||
292
web/App_Script/ContentBuilder/ContentBuilder.aspx
Normal file
@@ -0,0 +1,292 @@
|
||||
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="ContentBuilder.aspx.cs" Inherits="App_Script_ContentBuilder_ContentBuilder" %>
|
||||
|
||||
<!DOCTYPE HTML>
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head runat="server">
|
||||
<meta charset="utf-8">
|
||||
<title>閃電編輯器 - Bootstrap ContentBuilder</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="description" content="">
|
||||
<link rel="shortcut icon" href="../ckeditor/plugins/ContentBuilder/icons/ContentBuilder.png" type="image/png"/>
|
||||
|
||||
<!-- Bootstrap -->
|
||||
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
|
||||
<script src="../jquery-1.12.4.min.js"></script>
|
||||
<link href="assets/minimalist-blocks/content.css" rel="stylesheet" type="text/css" />
|
||||
<link href="contentbuilder/contentbuilder.css" rel="stylesheet" type="text/css" />
|
||||
|
||||
<style>
|
||||
.container {margin: 140px auto; /*max-width: 800px;*/ width:100%; /*padding:0 35px;*/ box-sizing: border-box;}
|
||||
#button button{
|
||||
min-width: 135px;
|
||||
height: 50px;
|
||||
line-height: 1;
|
||||
display: inline-block;
|
||||
box-sizing: border-box;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
cursor: pointer;
|
||||
background-color: #f7f7f7;
|
||||
color: #4a4a4a;
|
||||
border: 1px solid transparent;
|
||||
font-family: sans-serif;
|
||||
letter-spacing: 1px;
|
||||
font-size: 13px;
|
||||
font-weight: normal;
|
||||
text-transform: uppercase;
|
||||
text-align: center;
|
||||
position: relative;
|
||||
border-radius: 0;
|
||||
transition: all ease 0.3s;
|
||||
user-select: none;
|
||||
white-space: normal;
|
||||
vertical-align: middle;
|
||||
line-height: 50px;
|
||||
}
|
||||
#button button:hover {
|
||||
background: #EEE;
|
||||
}
|
||||
#button button>img{
|
||||
height:20px;
|
||||
margin-right: 6px;
|
||||
}
|
||||
</style>
|
||||
<script>
|
||||
let web_root ='<%=web_root%>';
|
||||
</script>
|
||||
|
||||
<link href="<%=ResolveUrl("~/App_Script/fontawesome/css/all.min.css") %>" rel="stylesheet" />
|
||||
<script src="<%=ResolveUrl("~/App_Script/sweetalert2-9.10.9/dist/sweetalert2.min.js") %>"></script>
|
||||
<link href="<%=ResolveUrl("~/App_Script/sweetalert2-9.10.9/dist/sweetalert2.min.css") %>" rel="stylesheet" />
|
||||
<script>
|
||||
function msgbox(html, icon = '', url = '') {
|
||||
Swal.fire({
|
||||
icon: icon,
|
||||
html: html,
|
||||
confirmButtonText: '關閉',
|
||||
onClose: () => {
|
||||
if (url != '') {
|
||||
window.location = url;
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function msgtop(html, icon = 'success') {
|
||||
const Toast = Swal.mixin({
|
||||
toast: true,
|
||||
position: 'top-end',
|
||||
showConfirmButton: false,
|
||||
timer: 3000,
|
||||
heightAuto: false,
|
||||
timerProgressBar: true,
|
||||
onOpen: (toast) => {
|
||||
toast.addEventListener('mouseenter', Swal.stopTimer)
|
||||
toast.addEventListener('mouseleave', Swal.resumeTimer)
|
||||
}
|
||||
})
|
||||
|
||||
Toast.fire({
|
||||
icon: icon,
|
||||
html: '<div class="swal2-toast-cus">' + html + '</div>'
|
||||
})
|
||||
}
|
||||
|
||||
var mctmp = '0';
|
||||
function msgconfirm(html, btn, icon = 'question') {
|
||||
if (mctmp == '0') {
|
||||
Swal.fire({
|
||||
html: html,
|
||||
icon: icon,
|
||||
showCancelButton: true,
|
||||
confirmButtonText: '<i class="mdi mdi-check"></i> 確定',
|
||||
cancelButtonText: '<i class="mdi mdi-close"></i> 取消'
|
||||
}).then((result) => {
|
||||
if (result.value) {
|
||||
mctmp = '1';
|
||||
if ($(btn)[0].hasAttribute('href')) {
|
||||
var href = $(btn).attr('href');
|
||||
window.location.href = href;
|
||||
} else {
|
||||
$(btn).click();
|
||||
}
|
||||
}
|
||||
})
|
||||
mctmp = '0';
|
||||
return false;
|
||||
} else {
|
||||
mctmp = '0';
|
||||
return true;
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<style>
|
||||
.swal2-container > div {
|
||||
width: auto;
|
||||
min-width: 300px;
|
||||
max-width: 95%;
|
||||
}
|
||||
|
||||
.swal2-content {
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.swal2-actions > button {
|
||||
font-size: 14px !important;
|
||||
}
|
||||
|
||||
.swal2-toast-cus {
|
||||
font-size: 20px;
|
||||
margin: 20px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
p.form-control-static label{
|
||||
margin-left:3px;
|
||||
margin-right:10px;
|
||||
}
|
||||
.table-hover td select.form-control{
|
||||
width:auto;
|
||||
margin:auto;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<form id="form1" runat="server">
|
||||
<div>
|
||||
</div>
|
||||
</form>
|
||||
<script type="text/javascript">
|
||||
window.onload = function () {
|
||||
$('.container')[0].insertAdjacentHTML('beforeend', window.opener.CKEDITOR.instances[new URL(location.href).searchParams.get('editor')].getData());
|
||||
|
||||
builder.applyBehavior();
|
||||
builder.opts.onChange();
|
||||
builder.opts.onRender();
|
||||
}
|
||||
|
||||
function closeWindow(b) {
|
||||
if (b) {
|
||||
if ($('[data-filename]').length > 0) {
|
||||
|
||||
var formData = new FormData();
|
||||
[].slice.call($('[data-filename]')).forEach(function (item, index, array) {
|
||||
if (item.getAttribute("data-filename") != null) {
|
||||
let dataUrl = item.src.split(',')
|
||||
let base64 = dataUrl[1];
|
||||
var fileName = item.getAttribute("data-filename");
|
||||
var imgfile = convertBase64UrlToImgFile(base64, fileName, 'image/*');
|
||||
formData.append('file', imgfile, fileName);
|
||||
}
|
||||
});
|
||||
|
||||
$.ajax({
|
||||
asynce: false,
|
||||
url: "upload.aspx",
|
||||
type: "POST",
|
||||
cache: false,
|
||||
data: formData,
|
||||
processData: false,
|
||||
contentType: false,
|
||||
success: function (data) {
|
||||
[].slice.call($('[data-filename]')).forEach(function (item, index, array) {
|
||||
item.src = web_root + "upload/edit/" + item.getAttribute("data-filename");//.split('.')[0] + ".jpg";
|
||||
item.removeAttribute("data-filename")
|
||||
});
|
||||
|
||||
setTimeout(function () {
|
||||
window.opener.CKEDITOR.instances[new URL(location.href).searchParams.get('editor')].setData(builder.html());
|
||||
window.close();
|
||||
window.opener.focus();
|
||||
}, 100);
|
||||
},
|
||||
error: function (data) {
|
||||
msgtop('上傳圖片失敗', 'error');
|
||||
}
|
||||
});
|
||||
}
|
||||
else {
|
||||
window.opener.CKEDITOR.instances[new URL(location.href).searchParams.get('editor')].setData(builder.html());
|
||||
window.close();
|
||||
window.opener.focus();
|
||||
}
|
||||
|
||||
}
|
||||
else {
|
||||
window.close();
|
||||
window.opener.focus();
|
||||
}
|
||||
}
|
||||
|
||||
function convertBase64UrlToImgFile(urlData,fileName,fileType) {
|
||||
var bytes = window.atob(urlData); //转换为byte
|
||||
//处理异常,将ascii码小于0的转换为大于0
|
||||
var ab = new ArrayBuffer(bytes.length);
|
||||
var ia = new Int8Array(ab);
|
||||
var i;
|
||||
for (i = 0; i < bytes.length; i++) {
|
||||
ia[i] = bytes.charCodeAt(i);
|
||||
}
|
||||
//转换成文件,添加文件的type,name,lastModifiedDate属性
|
||||
var blob=new Blob([ab], {type:fileType});
|
||||
blob.lastModifiedDate = new Date();
|
||||
blob.name = fileName;
|
||||
return blob;
|
||||
}
|
||||
/**/</script>
|
||||
|
||||
<div class="container">
|
||||
|
||||
</div>
|
||||
<div id="button" style="position: fixed; top: 0; left: 0;">
|
||||
<button type="button" id="btn_ok" onclick="closeWindow(true)" title="確定"><img src="check2.svg" />確定</button>
|
||||
<button type="button" id="btn_cancel" onclick="closeWindow(false)" title="取消"><img src="cross2.svg" />取消</button>
|
||||
</div>
|
||||
<script src="contentbuilder/contentbuilder.js" type="text/javascript"></script>
|
||||
<script src="assets/minimalist-blocks/content.js" type="text/javascript"></script>
|
||||
<script src="contentbuilder/lang/zh-tw.js" type="text/javascript"></script>
|
||||
<script>
|
||||
var snippetCategories = [
|
||||
[120, "基本"],
|
||||
[118, "文章"],
|
||||
[101, "標題"],
|
||||
[119, "按鈕"],
|
||||
[102, "相片"],
|
||||
[103, "圖文區塊"],
|
||||
[116, "聯絡資訊"],
|
||||
[104, "商品"],
|
||||
[105, "特色"],
|
||||
[106, "流程"],
|
||||
[107, "價格"],
|
||||
[108, "技能"],
|
||||
[109, "成就"],
|
||||
[110, "引言"],
|
||||
[111, "合作伙伴"],
|
||||
[112, "相關資訊"],
|
||||
[113, "錯誤畫面"],
|
||||
[114, "建置中"],
|
||||
[115, "說明"],
|
||||
//[999, "送出 Send"]
|
||||
];
|
||||
var builder = new ContentBuilder({
|
||||
container: '.container',
|
||||
snippetOpen: true,
|
||||
row: 'row',
|
||||
cols: ['col-md-1', 'col-md-2', 'col-md-3', 'col-md-4', 'col-md-5', 'col-md-6', 'col-md-7', 'col-md-8', 'col-md-9', 'col-md-10', 'col-md-11', 'col-md-12'],
|
||||
clearPreferences: true,
|
||||
snippetCategories: snippetCategories
|
||||
});
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
<%--
|
||||
應修正項目:
|
||||
|
||||
----
|
||||
e.opts.emailSnippetCategories
|
||||
e.opts.snippetCategories
|
||||
To get HTML:
|
||||
|
||||
var html = builder.html();
|
||||
--%>
|
||||
61
web/App_Script/ContentBuilder/ContentBuilder.aspx.cs
Normal file
@@ -0,0 +1,61 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Web;
|
||||
using System.Web.UI;
|
||||
using System.Web.UI.WebControls;
|
||||
using System.Data;
|
||||
using System.Data.OleDb;
|
||||
using System.Configuration;
|
||||
|
||||
public partial class App_Script_ContentBuilder_ContentBuilder : MyWeb.function
|
||||
{
|
||||
public string web_root;
|
||||
string db = ConfigurationManager.ConnectionStrings["shopConn"].ConnectionString;
|
||||
string p_name = ConfigurationManager.ConnectionStrings["shopConn"].ProviderName;
|
||||
string scc = ConfigurationManager.AppSettings["shopCarCode"].ToString();
|
||||
|
||||
protected void Page_Load(object sender, EventArgs e)
|
||||
{
|
||||
MyWeb.admin admin = new MyWeb.admin();
|
||||
if (admin.isLoign())
|
||||
{
|
||||
if (admin.info.login_ip != MyWeb.admin.MyIP)
|
||||
{
|
||||
HttpContext.Current.Response.Clear();
|
||||
HttpContext.Current.Response.StatusCode = 404;
|
||||
HttpContext.Current.Response.End();
|
||||
}
|
||||
|
||||
|
||||
MyWeb.sql sql = new MyWeb.sql();
|
||||
OleDbConnection sqlConn = sql.conn(db, p_name);
|
||||
try
|
||||
{
|
||||
sqlConn.Open();
|
||||
OleDbCommand sqlCmd = new OleDbCommand("", sqlConn);
|
||||
sqlCmd.CommandText = "SELECT pic_url FROM company";
|
||||
DataTable dt = sql.dataTable(sqlCmd);
|
||||
if (dt.Rows.Count > 0)
|
||||
{
|
||||
web_root = dt.Rows[0]["pic_url"].ToString();
|
||||
web_root += web_root.Substring(web_root.Length - 1, 1) != "/" ? "/" : "";
|
||||
}
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
//Response.Write(ex.Message);
|
||||
}
|
||||
finally
|
||||
{
|
||||
sqlConn.Close();
|
||||
sqlConn.Dispose();
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
HttpContext.Current.Response.Redirect("~/admin/index.aspx");
|
||||
}
|
||||
base.OnPreInit(e);
|
||||
}
|
||||
}
|
||||
BIN
web/App_Script/ContentBuilder/assets/.DS_Store
vendored
Normal file
BIN
web/App_Script/ContentBuilder/assets/email-blocks/.DS_Store
vendored
Normal file
@@ -0,0 +1,312 @@
|
||||
<style>
|
||||
@media only screen {
|
||||
html {
|
||||
min-height: 100%;
|
||||
background: #f3f3f3;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 606px) {
|
||||
.small-float-center {
|
||||
margin: 0 auto !important;
|
||||
float: none !important;
|
||||
text-align: center !important;
|
||||
}
|
||||
.small-text-center {
|
||||
text-align: center !important;
|
||||
}
|
||||
.small-text-left {
|
||||
text-align: left !important;
|
||||
}
|
||||
.small-text-right {
|
||||
text-align: right !important;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 606px) {
|
||||
.hide-for-large {
|
||||
display: block !important;
|
||||
width: auto !important;
|
||||
overflow: visible !important;
|
||||
max-height: none !important;
|
||||
font-size: inherit !important;
|
||||
line-height: inherit !important;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 606px) {
|
||||
table.body table.container .hide-for-large,
|
||||
table.body table.container .row.hide-for-large {
|
||||
display: table !important;
|
||||
width: 100% !important;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 606px) {
|
||||
table.body table.container .callout-inner.hide-for-large {
|
||||
display: table-cell !important;
|
||||
width: 100% !important;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 606px) {
|
||||
table.body table.container .show-for-large {
|
||||
display: none !important;
|
||||
width: 0;
|
||||
mso-hide: all;
|
||||
overflow: hidden;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 606px) {
|
||||
table.body img {
|
||||
width: auto;
|
||||
height: auto;
|
||||
}
|
||||
table.body center {
|
||||
min-width: 0 !important;
|
||||
}
|
||||
table.body .container {
|
||||
width: 95% !important;
|
||||
}
|
||||
table.body .columns,
|
||||
table.body .column {
|
||||
height: auto !important;
|
||||
-moz-box-sizing: border-box;
|
||||
-webkit-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
padding-left: 26px !important;
|
||||
padding-right: 26px !important;
|
||||
}
|
||||
table.body .columns .column,
|
||||
table.body .columns .columns,
|
||||
table.body .column .column,
|
||||
table.body .column .columns {
|
||||
padding-left: 0 !important;
|
||||
padding-right: 0 !important;
|
||||
}
|
||||
table.body .collapse .columns,
|
||||
table.body .collapse .column {
|
||||
padding-left: 0 !important;
|
||||
padding-right: 0 !important;
|
||||
}
|
||||
td.small-1,
|
||||
th.small-1 {
|
||||
display: inline-block !important;
|
||||
width: 8.33333% !important;
|
||||
}
|
||||
td.small-2,
|
||||
th.small-2 {
|
||||
display: inline-block !important;
|
||||
width: 16.66667% !important;
|
||||
}
|
||||
td.small-3,
|
||||
th.small-3 {
|
||||
display: inline-block !important;
|
||||
width: 25% !important;
|
||||
}
|
||||
td.small-4,
|
||||
th.small-4 {
|
||||
display: inline-block !important;
|
||||
width: 33.33333% !important;
|
||||
}
|
||||
td.small-5,
|
||||
th.small-5 {
|
||||
display: inline-block !important;
|
||||
width: 41.66667% !important;
|
||||
}
|
||||
td.small-6,
|
||||
th.small-6 {
|
||||
display: inline-block !important;
|
||||
width: 50% !important;
|
||||
}
|
||||
td.small-7,
|
||||
th.small-7 {
|
||||
display: inline-block !important;
|
||||
width: 58.33333% !important;
|
||||
}
|
||||
td.small-8,
|
||||
th.small-8 {
|
||||
display: inline-block !important;
|
||||
width: 66.66667% !important;
|
||||
}
|
||||
td.small-9,
|
||||
th.small-9 {
|
||||
display: inline-block !important;
|
||||
width: 75% !important;
|
||||
}
|
||||
td.small-10,
|
||||
th.small-10 {
|
||||
display: inline-block !important;
|
||||
width: 83.33333% !important;
|
||||
}
|
||||
td.small-11,
|
||||
th.small-11 {
|
||||
display: inline-block !important;
|
||||
width: 91.66667% !important;
|
||||
}
|
||||
td.small-12,
|
||||
th.small-12 {
|
||||
display: inline-block !important;
|
||||
width: 100% !important;
|
||||
}
|
||||
.columns td.small-12,
|
||||
.column td.small-12,
|
||||
.columns th.small-12,
|
||||
.column th.small-12 {
|
||||
display: block !important;
|
||||
width: 100% !important;
|
||||
}
|
||||
table.body td.small-offset-1,
|
||||
table.body th.small-offset-1 {
|
||||
margin-left: 8.33333% !important;
|
||||
Margin-left: 8.33333% !important;
|
||||
}
|
||||
table.body td.small-offset-2,
|
||||
table.body th.small-offset-2 {
|
||||
margin-left: 16.66667% !important;
|
||||
Margin-left: 16.66667% !important;
|
||||
}
|
||||
table.body td.small-offset-3,
|
||||
table.body th.small-offset-3 {
|
||||
margin-left: 25% !important;
|
||||
Margin-left: 25% !important;
|
||||
}
|
||||
table.body td.small-offset-4,
|
||||
table.body th.small-offset-4 {
|
||||
margin-left: 33.33333% !important;
|
||||
Margin-left: 33.33333% !important;
|
||||
}
|
||||
table.body td.small-offset-5,
|
||||
table.body th.small-offset-5 {
|
||||
margin-left: 41.66667% !important;
|
||||
Margin-left: 41.66667% !important;
|
||||
}
|
||||
table.body td.small-offset-6,
|
||||
table.body th.small-offset-6 {
|
||||
margin-left: 50% !important;
|
||||
Margin-left: 50% !important;
|
||||
}
|
||||
table.body td.small-offset-7,
|
||||
table.body th.small-offset-7 {
|
||||
margin-left: 58.33333% !important;
|
||||
Margin-left: 58.33333% !important;
|
||||
}
|
||||
table.body td.small-offset-8,
|
||||
table.body th.small-offset-8 {
|
||||
margin-left: 66.66667% !important;
|
||||
Margin-left: 66.66667% !important;
|
||||
}
|
||||
table.body td.small-offset-9,
|
||||
table.body th.small-offset-9 {
|
||||
margin-left: 75% !important;
|
||||
Margin-left: 75% !important;
|
||||
}
|
||||
table.body td.small-offset-10,
|
||||
table.body th.small-offset-10 {
|
||||
margin-left: 83.33333% !important;
|
||||
Margin-left: 83.33333% !important;
|
||||
}
|
||||
table.body td.small-offset-11,
|
||||
table.body th.small-offset-11 {
|
||||
margin-left: 91.66667% !important;
|
||||
Margin-left: 91.66667% !important;
|
||||
}
|
||||
table.body table.columns td.expander,
|
||||
table.body table.columns th.expander {
|
||||
display: none !important;
|
||||
}
|
||||
table.body .right-text-pad,
|
||||
table.body .text-pad-right {
|
||||
padding-left: 10px !important;
|
||||
}
|
||||
table.body .left-text-pad,
|
||||
table.body .text-pad-left {
|
||||
padding-right: 10px !important;
|
||||
}
|
||||
table.menu {
|
||||
width: 100% !important;
|
||||
}
|
||||
table.menu td,
|
||||
table.menu th {
|
||||
width: auto !important;
|
||||
display: inline-block !important;
|
||||
}
|
||||
table.menu.vertical td,
|
||||
table.menu.vertical th,
|
||||
table.menu.small-vertical td,
|
||||
table.menu.small-vertical th {
|
||||
display: block !important;
|
||||
}
|
||||
table.menu[align="center"] {
|
||||
width: auto !important;
|
||||
}
|
||||
table.button.small-expand,
|
||||
table.button.small-expanded {
|
||||
width: 100% !important;
|
||||
}
|
||||
table.button.small-expand table,
|
||||
table.button.small-expanded table {
|
||||
width: 100%;
|
||||
}
|
||||
table.button.small-expand table a,
|
||||
table.button.small-expanded table a {
|
||||
text-align: center !important;
|
||||
width: 100% !important;
|
||||
padding-left: 0 !important;
|
||||
padding-right: 0 !important;
|
||||
}
|
||||
table.button.small-expand center,
|
||||
table.button.small-expanded center {
|
||||
min-width: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 640px) {
|
||||
.height-20 {
|
||||
height: 20px;
|
||||
}
|
||||
.height-40 {
|
||||
height: 40px;
|
||||
}
|
||||
.height-60 {
|
||||
height: 40px;
|
||||
}
|
||||
.height-80 {
|
||||
height: 40px;
|
||||
}
|
||||
.height-100 {
|
||||
height: 40px;
|
||||
}
|
||||
.height-120 {
|
||||
height: 40px;
|
||||
}
|
||||
.height-140 {
|
||||
height: 40px;
|
||||
}
|
||||
.height-160 {
|
||||
height: 40px;
|
||||
}
|
||||
.height-180 {
|
||||
height: 40px;
|
||||
}
|
||||
.height-200 {
|
||||
height: 40px;
|
||||
}
|
||||
.height-220 {
|
||||
height: 40px;
|
||||
}
|
||||
.height-240 {
|
||||
height: 40px;
|
||||
}
|
||||
.height-260 {
|
||||
height: 40px;
|
||||
}
|
||||
.height-280 {
|
||||
height: 40px;
|
||||
}
|
||||
.height-300 {
|
||||
height: 40px;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
6601
web/App_Script/ContentBuilder/assets/email-blocks/content-inlined.js
Normal file
425
web/App_Script/ContentBuilder/assets/email-blocks/content.css
Normal file
@@ -0,0 +1,425 @@
|
||||
body, table.body, h1, h2, h3, h4, h5, h6, p, td, th, a {
|
||||
font-family: sans-serif;
|
||||
font-weight: 300;
|
||||
line-height: 1.7; }
|
||||
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
margin: 12px 0; line-height: 1.3; font-weight: 600; }
|
||||
|
||||
h1 {
|
||||
font-size: 40px; }
|
||||
h2 {
|
||||
font-size: 30px; }
|
||||
h3 {
|
||||
font-size: 26px; }
|
||||
h4 {
|
||||
font-size: 24px; }
|
||||
h5 {
|
||||
font-size: 20px; }
|
||||
h6 {
|
||||
font-size: 18px; }
|
||||
|
||||
|
||||
hr {border:none;border-top: rgba(0, 0, 0, 0.18) 1px solid;margin: 30px 0 25px;padding: 5px;}
|
||||
pre {
|
||||
font-family: courier;
|
||||
font-size: 1rem;
|
||||
line-height: 2;
|
||||
white-space: pre-wrap;
|
||||
}
|
||||
|
||||
/*table td {padding:12px;}*/
|
||||
|
||||
.height-20 {height:20px}
|
||||
.height-40 {height:40px}
|
||||
.height-60 {height:60px}
|
||||
.height-80 {height:80px}
|
||||
.height-100 {height:100px}
|
||||
.height-120 {height:120px}
|
||||
.height-140 {height:140px}
|
||||
.height-160 {height:160px}
|
||||
.height-180 {height:180px}
|
||||
.height-200 {height:200px}
|
||||
.height-220 {height:220px}
|
||||
.height-240 {height:240px}
|
||||
.height-260 {height:260px}
|
||||
.height-280 {height:280px}
|
||||
.height-300 {height:300px}
|
||||
@media (max-width: 640px) {
|
||||
.height-20 {height:20px}
|
||||
.height-40 {height:40px}
|
||||
.height-60 {height:40px}
|
||||
.height-80 {height:40px}
|
||||
.height-100 {height:40px}
|
||||
.height-120 {height:40px}
|
||||
.height-140 {height:40px}
|
||||
.height-160 {height:40px}
|
||||
.height-180 {height:40px}
|
||||
.height-200 {height:40px}
|
||||
.height-220 {height:40px}
|
||||
.height-240 {height:40px}
|
||||
.height-260 {height:40px}
|
||||
.height-280 {height:40px}
|
||||
.height-300 {height:40px}
|
||||
}
|
||||
|
||||
.size-12 {font-size:12px !important}
|
||||
.size-14 {font-size:14px !important}
|
||||
.size-16 {font-size:16px !important}
|
||||
.size-18 {font-size:18px !important}
|
||||
.size-21 {font-size:21px !important}
|
||||
.size-24 {font-size:24px !important}
|
||||
.size-28 {font-size:28px !important}
|
||||
.size-32 {font-size:32px !important}
|
||||
.size-35 {font-size:35px !important}
|
||||
.size-38 {font-size:38px !important}
|
||||
.size-42 {font-size:42px !important}
|
||||
.size-46 {font-size:46px !important}
|
||||
.size-48 {font-size:48px !important}
|
||||
.size-50 {font-size:50px !important}
|
||||
.size-54 {font-size:54px !important}
|
||||
.size-60 {font-size:60px !important}
|
||||
.size-64 {font-size:64px !important}
|
||||
.size-68 {font-size:68px !important}
|
||||
.size-72 {font-size:72px !important}
|
||||
.size-76 {font-size:76px !important}
|
||||
.size-80 {font-size:80px !important}
|
||||
.size-84 {font-size:84px !important}
|
||||
.size-88 {font-size:88px !important}
|
||||
.size-92 {font-size:92px !important}
|
||||
.size-96 {font-size:96px !important}
|
||||
.size-100 {font-size:100px !important}
|
||||
.size-104 {font-size:104px !important}
|
||||
.size-108 {font-size:108px !important}
|
||||
.size-112 {font-size:112px !important}
|
||||
.size-116 {font-size:116px !important}
|
||||
.size-120 {font-size:120px !important}
|
||||
.size-124 {font-size:124px !important}
|
||||
.size-128 {font-size:128px !important}
|
||||
.size-132 {font-size:132px !important}
|
||||
.size-136 {font-size:136px !important}
|
||||
.size-140 {font-size:140px !important}
|
||||
.size-144 {font-size:144px !important}
|
||||
.size-148 {font-size:148px !important}
|
||||
.size-152 {font-size:152px !important}
|
||||
.size-156 {font-size:156px !important}
|
||||
.size-160 {font-size:160px !important}
|
||||
.size-164 {font-size:164px !important}
|
||||
.size-168 {font-size:168px !important}
|
||||
.size-172 {font-size:172px !important}
|
||||
.size-176 {font-size:176px !important}
|
||||
.size-180 {font-size:180px !important}
|
||||
.size-184 {font-size:184px !important}
|
||||
.size-188 {font-size:188px !important}
|
||||
.size-192 {font-size:192px !important}
|
||||
.size-196 {font-size:196px !important}
|
||||
.size-200 {font-size:200px !important}
|
||||
.size-204 {font-size:204px !important}
|
||||
.size-208 {font-size:208px !important}
|
||||
.size-212 {font-size:212px !important}
|
||||
.size-216 {font-size:216px !important}
|
||||
.size-220 {font-size:220px !important}
|
||||
|
||||
@media all and (max-width: 1024px) {
|
||||
.size-12 {font-size:12px !important}
|
||||
.size-14 {font-size:14px !important}
|
||||
.size-16 {font-size:16px !important}
|
||||
.size-18 {font-size:18px !important}
|
||||
.size-21 {font-size:21px !important}
|
||||
.size-24 {font-size:24px !important}
|
||||
.size-28 {font-size:28px !important}
|
||||
.size-32 {font-size:32px !important}
|
||||
.size-35 {font-size:35px !important}
|
||||
.size-38 {font-size:38px !important}
|
||||
.size-42 {font-size:42px !important}
|
||||
.size-46 {font-size:46px !important}
|
||||
.size-48 {font-size:48px !important}
|
||||
.size-50 {font-size:50px !important}
|
||||
.size-54 {font-size:54px !important}
|
||||
.size-60 {font-size:60px !important}
|
||||
.size-64 {font-size:64px !important}
|
||||
.size-68 {font-size:68px !important}
|
||||
.size-72 {font-size:72px !important}
|
||||
.size-76 {font-size:73px !important}
|
||||
.size-80 {font-size:74px !important}
|
||||
.size-84 {font-size:75px !important}
|
||||
.size-88 {font-size:76px !important}
|
||||
.size-92 {font-size:77px !important}
|
||||
.size-96 {font-size:78px !important}
|
||||
.size-100 {font-size:79px !important}
|
||||
.size-104 {font-size:80px !important}
|
||||
.size-108 {font-size:81px !important}
|
||||
.size-112 {font-size:82px !important}
|
||||
.size-116 {font-size:84px !important}
|
||||
.size-120 {font-size:85px !important}
|
||||
.size-124 {font-size:86px !important}
|
||||
.size-128 {font-size:87px !important}
|
||||
.size-132 {font-size:88px !important}
|
||||
.size-136 {font-size:89px !important}
|
||||
.size-140 {font-size:90px !important}
|
||||
.size-144 {font-size:91px !important}
|
||||
.size-148 {font-size:92px !important}
|
||||
.size-152 {font-size:93px !important}
|
||||
.size-156 {font-size:94px !important}
|
||||
.size-160 {font-size:95px !important}
|
||||
.size-164 {font-size:96px !important}
|
||||
.size-168 {font-size:97px !important}
|
||||
.size-172 {font-size:98px !important}
|
||||
.size-176 {font-size:99px !important}
|
||||
.size-180 {font-size:100px !important}
|
||||
.size-184 {font-size:111px !important}
|
||||
.size-188 {font-size:112px !important}
|
||||
.size-192 {font-size:113px !important}
|
||||
.size-196 {font-size:114px !important}
|
||||
.size-200 {font-size:115px !important}
|
||||
.size-204 {font-size:116px !important}
|
||||
.size-208 {font-size:117px !important}
|
||||
.size-212 {font-size:118px !important}
|
||||
.size-216 {font-size:119px !important}
|
||||
.size-220 {font-size:120px !important}
|
||||
}
|
||||
|
||||
@media all and (max-width: 640px) {
|
||||
.size-12 {font-size:12px !important}
|
||||
.size-14 {font-size:14px !important}
|
||||
.size-16 {font-size:16px !important}
|
||||
.size-18 {font-size:18px !important}
|
||||
.size-21 {font-size:21px !important}
|
||||
.size-24 {font-size:22px !important}
|
||||
.size-28 {font-size:24px !important}
|
||||
.size-32 {font-size:26px !important}
|
||||
.size-35 {font-size:28px !important}
|
||||
.size-38 {font-size:30px !important}
|
||||
.size-42 {font-size:32px !important}
|
||||
.size-46 {font-size:34px !important}
|
||||
.size-48 {font-size:36px !important}
|
||||
.size-50 {font-size:36px !important}
|
||||
.size-54 {font-size:36px !important}
|
||||
.size-60 {font-size:36px !important}
|
||||
.size-64 {font-size:36px !important}
|
||||
.size-68 {font-size:36px !important}
|
||||
.size-72 {font-size:36px !important}
|
||||
.size-76 {font-size:36px !important}
|
||||
.size-80 {font-size:36px !important}
|
||||
.size-84 {font-size:36px !important}
|
||||
.size-88 {font-size:36px !important}
|
||||
.size-92 {font-size:36px !important}
|
||||
.size-96 {font-size:36px !important}
|
||||
.size-100 {font-size:36px !important}
|
||||
.size-104 {font-size:36px !important}
|
||||
.size-108 {font-size:36px !important}
|
||||
.size-112 {font-size:36px !important}
|
||||
.size-116 {font-size:36px !important}
|
||||
.size-120 {font-size:36px !important}
|
||||
.size-124 {font-size:36px !important}
|
||||
.size-128 {font-size:36px !important}
|
||||
.size-132 {font-size:36px !important}
|
||||
.size-136 {font-size:36px !important}
|
||||
.size-140 {font-size:36px !important}
|
||||
.size-144 {font-size:36px !important}
|
||||
.size-148 {font-size:36px !important}
|
||||
.size-152 {font-size:36px !important}
|
||||
.size-156 {font-size:36px !important}
|
||||
.size-160 {font-size:36px !important}
|
||||
.size-164 {font-size:36px !important}
|
||||
.size-168 {font-size:36px !important}
|
||||
.size-172 {font-size:36px !important}
|
||||
.size-176 {font-size:36px !important}
|
||||
.size-180 {font-size:36px !important}
|
||||
.size-184 {font-size:36px !important}
|
||||
.size-188 {font-size:36px !important}
|
||||
.size-192 {font-size:36px !important}
|
||||
.size-196 {font-size:36px !important}
|
||||
.size-200 {font-size:36px !important}
|
||||
.size-204 {font-size:36px !important}
|
||||
.size-208 {font-size:36px !important}
|
||||
.size-212 {font-size:36px !important}
|
||||
.size-216 {font-size:36px !important}
|
||||
.size-220 {font-size:36px !important}
|
||||
}
|
||||
|
||||
/* If text wrapped with span-style during editing, don't apply the fix here (See line59) */
|
||||
.size-12 span {font-size:12px !important}
|
||||
.size-14 span {font-size:14px !important}
|
||||
.size-16 span {font-size:16px !important}
|
||||
.size-18 span {font-size:18px !important}
|
||||
.size-21 span {font-size:21px !important}
|
||||
.size-24 span {font-size:24px !important}
|
||||
.size-28 span {font-size:28px !important}
|
||||
.size-32 span {font-size:32px !important}
|
||||
.size-35 span {font-size:35px !important}
|
||||
.size-38 span {font-size:38px !important}
|
||||
.size-42 span {font-size:42px !important}
|
||||
.size-46 span {font-size:46px !important}
|
||||
.size-48 span {font-size:48px !important}
|
||||
.size-50 span {font-size:50px !important}
|
||||
.size-54 span {font-size:54px !important}
|
||||
.size-60 span {font-size:60px !important}
|
||||
.size-64 span {font-size:64px !important}
|
||||
.size-68 span {font-size:68px !important}
|
||||
.size-72 span {font-size:72px !important}
|
||||
.size-76 span {font-size:76px !important}
|
||||
.size-80 span {font-size:80px !important}
|
||||
.size-84 span {font-size:84px !important}
|
||||
.size-88 span {font-size:88px !important}
|
||||
.size-92 span {font-size:92px !important}
|
||||
.size-96 span {font-size:96px !important}
|
||||
.size-100 span {font-size:100px !important}
|
||||
.size-104 span {font-size:104px !important}
|
||||
.size-108 span {font-size:108px !important}
|
||||
.size-112 span {font-size:112px !important}
|
||||
.size-116 span {font-size:116px !important}
|
||||
.size-120 span {font-size:120px !important}
|
||||
.size-124 span {font-size:124px !important}
|
||||
.size-128 span {font-size:128px !important}
|
||||
.size-132 span {font-size:132px !important}
|
||||
.size-136 span {font-size:136px !important}
|
||||
.size-140 span {font-size:140px !important}
|
||||
.size-144 span {font-size:144px !important}
|
||||
.size-148 span {font-size:148px !important}
|
||||
.size-152 span {font-size:152px !important}
|
||||
.size-156 span {font-size:156px !important}
|
||||
.size-160 span {font-size:160px !important}
|
||||
.size-164 span {font-size:164px !important}
|
||||
.size-168 span {font-size:168px !important}
|
||||
.size-172 span {font-size:172px !important}
|
||||
.size-176 span {font-size:176px !important}
|
||||
.size-180 span {font-size:180px !important}
|
||||
.size-184 span {font-size:184px !important}
|
||||
.size-188 span {font-size:188px !important}
|
||||
.size-192 span {font-size:192px !important}
|
||||
.size-196 span {font-size:196px !important}
|
||||
.size-200 span {font-size:200px !important}
|
||||
.size-204 span {font-size:204px !important}
|
||||
.size-208 span {font-size:208px !important}
|
||||
.size-212 span {font-size:212px !important}
|
||||
.size-216 span {font-size:216px !important}
|
||||
.size-220 span {font-size:220px !important}
|
||||
|
||||
@media all and (max-width: 1024px) {
|
||||
.size-12 span {font-size:12px !important}
|
||||
.size-14 span {font-size:14px !important}
|
||||
.size-16 span {font-size:16px !important}
|
||||
.size-18 span {font-size:18px !important}
|
||||
.size-21 span {font-size:21px !important}
|
||||
.size-24 span {font-size:24px !important}
|
||||
.size-28 span {font-size:28px !important}
|
||||
.size-32 span {font-size:32px !important}
|
||||
.size-35 span {font-size:35px !important}
|
||||
.size-38 span {font-size:38px !important}
|
||||
.size-42 span {font-size:42px !important}
|
||||
.size-46 span {font-size:46px !important}
|
||||
.size-48 span {font-size:48px !important}
|
||||
.size-50 span {font-size:50px !important}
|
||||
.size-54 span {font-size:54px !important}
|
||||
.size-60 span {font-size:60px !important}
|
||||
.size-64 span {font-size:64px !important}
|
||||
.size-68 span {font-size:68px !important}
|
||||
.size-72 span {font-size:72px !important}
|
||||
.size-76 span {font-size:73px !important}
|
||||
.size-80 span {font-size:74px !important}
|
||||
.size-84 span {font-size:75px !important}
|
||||
.size-88 span {font-size:76px !important}
|
||||
.size-92 span {font-size:77px !important}
|
||||
.size-96 span {font-size:78px !important}
|
||||
.size-100 span {font-size:79px !important}
|
||||
.size-104 span {font-size:80px !important}
|
||||
.size-108 span {font-size:81px !important}
|
||||
.size-112 span {font-size:82px !important}
|
||||
.size-116 span {font-size:84px !important}
|
||||
.size-120 span {font-size:85px !important}
|
||||
.size-124 span {font-size:86px !important}
|
||||
.size-128 span {font-size:87px !important}
|
||||
.size-132 span {font-size:88px !important}
|
||||
.size-136 span {font-size:89px !important}
|
||||
.size-140 span {font-size:90px !important}
|
||||
.size-144 span {font-size:91px !important}
|
||||
.size-148 span {font-size:92px !important}
|
||||
.size-152 span {font-size:93px !important}
|
||||
.size-156 span {font-size:94px !important}
|
||||
.size-160 span {font-size:95px !important}
|
||||
.size-164 span {font-size:96px !important}
|
||||
.size-168 span {font-size:97px !important}
|
||||
.size-172 span {font-size:98px !important}
|
||||
.size-176 span {font-size:99px !important}
|
||||
.size-180 span {font-size:100px !important}
|
||||
.size-184 span {font-size:111px !important}
|
||||
.size-188 span {font-size:112px !important}
|
||||
.size-192 span {font-size:113px !important}
|
||||
.size-196 span {font-size:114px !important}
|
||||
.size-200 span {font-size:115px !important}
|
||||
.size-204 span {font-size:116px !important}
|
||||
.size-208 span {font-size:117px !important}
|
||||
.size-212 span {font-size:118px !important}
|
||||
.size-216 span {font-size:119px !important}
|
||||
.size-220 span {font-size:120px !important}
|
||||
}
|
||||
|
||||
@media all and (max-width: 640px) {
|
||||
.size-12 span {font-size:12px !important}
|
||||
.size-14 span {font-size:14px !important}
|
||||
.size-16 span {font-size:16px !important}
|
||||
.size-18 span {font-size:18px !important}
|
||||
.size-21 span {font-size:21px !important}
|
||||
.size-24 span {font-size:22px !important}
|
||||
.size-28 span {font-size:24px !important}
|
||||
.size-32 span {font-size:26px !important}
|
||||
.size-35 span {font-size:28px !important}
|
||||
.size-38 span {font-size:30px !important}
|
||||
.size-42 span {font-size:32px !important}
|
||||
.size-46 span {font-size:34px !important}
|
||||
.size-48 span {font-size:36px !important}
|
||||
.size-50 span {font-size:36px !important}
|
||||
.size-54 span {font-size:36px !important}
|
||||
.size-60 span {font-size:36px !important}
|
||||
.size-64 span {font-size:36px !important}
|
||||
.size-68 span {font-size:36px !important}
|
||||
.size-72 span {font-size:36px !important}
|
||||
.size-76 span {font-size:36px !important}
|
||||
.size-80 span {font-size:36px !important}
|
||||
.size-84 span {font-size:36px !important}
|
||||
.size-88 span {font-size:36px !important}
|
||||
.size-92 span {font-size:36px !important}
|
||||
.size-96 span {font-size:36px !important}
|
||||
.size-100 span {font-size:36px !important}
|
||||
.size-104 span {font-size:36px !important}
|
||||
.size-108 span {font-size:36px !important}
|
||||
.size-112 span {font-size:36px !important}
|
||||
.size-116 span {font-size:36px !important}
|
||||
.size-120 span {font-size:36px !important}
|
||||
.size-124 span {font-size:36px !important}
|
||||
.size-128 span {font-size:36px !important}
|
||||
.size-132 span {font-size:36px !important}
|
||||
.size-136 span {font-size:36px !important}
|
||||
.size-140 span {font-size:36px !important}
|
||||
.size-144 span {font-size:36px !important}
|
||||
.size-148 span {font-size:36px !important}
|
||||
.size-152 span {font-size:36px !important}
|
||||
.size-156 span {font-size:36px !important}
|
||||
.size-160 span {font-size:36px !important}
|
||||
.size-164 span {font-size:36px !important}
|
||||
.size-168 span {font-size:36px !important}
|
||||
.size-172 span {font-size:36px !important}
|
||||
.size-176 span {font-size:36px !important}
|
||||
.size-180 span {font-size:36px !important}
|
||||
.size-184 span {font-size:36px !important}
|
||||
.size-188 span {font-size:36px !important}
|
||||
.size-192 span {font-size:36px !important}
|
||||
.size-196 span {font-size:36px !important}
|
||||
.size-200 span {font-size:36px !important}
|
||||
.size-204 span {font-size:36px !important}
|
||||
.size-208 span {font-size:36px !important}
|
||||
.size-212 span {font-size:36px !important}
|
||||
.size-216 span {font-size:36px !important}
|
||||
.size-220 span {font-size:36px !important}
|
||||
}
|
||||
|
||||
@media all and (max-width: 1024px) {
|
||||
.margin-left-1024-reset {margin-left:0px !important;}
|
||||
.margin-right-1024-reset {margin-right:0px !important;}
|
||||
}
|
||||
6384
web/App_Script/ContentBuilder/assets/email-blocks/content.js
Normal file
6116
web/App_Script/ContentBuilder/assets/email-blocks/content.txt
Normal file
BIN
web/App_Script/ContentBuilder/assets/email-blocks/example.jpg
Normal file
|
After Width: | Height: | Size: 102 KiB |
BIN
web/App_Script/ContentBuilder/assets/email-blocks/images/014.jpg
Normal file
|
After Width: | Height: | Size: 55 KiB |
BIN
web/App_Script/ContentBuilder/assets/email-blocks/images/015.jpg
Normal file
|
After Width: | Height: | Size: 26 KiB |
BIN
web/App_Script/ContentBuilder/assets/email-blocks/images/016.jpg
Normal file
|
After Width: | Height: | Size: 49 KiB |
BIN
web/App_Script/ContentBuilder/assets/email-blocks/images/017.jpg
Normal file
|
After Width: | Height: | Size: 24 KiB |
BIN
web/App_Script/ContentBuilder/assets/email-blocks/images/018.jpg
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
web/App_Script/ContentBuilder/assets/email-blocks/images/019.jpg
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
web/App_Script/ContentBuilder/assets/email-blocks/images/020.jpg
Normal file
|
After Width: | Height: | Size: 5.3 KiB |
BIN
web/App_Script/ContentBuilder/assets/email-blocks/images/021.jpg
Normal file
|
After Width: | Height: | Size: 5.9 KiB |
|
After Width: | Height: | Size: 1.7 KiB |
|
After Width: | Height: | Size: 763 B |
|
After Width: | Height: | Size: 479 B |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 13 KiB |
|
After Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 12 KiB |
BIN
web/App_Script/ContentBuilder/assets/email-blocks/images/031.jpg
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
web/App_Script/ContentBuilder/assets/email-blocks/images/032.jpg
Normal file
|
After Width: | Height: | Size: 26 KiB |
BIN
web/App_Script/ContentBuilder/assets/email-blocks/images/033.jpg
Normal file
|
After Width: | Height: | Size: 18 KiB |
BIN
web/App_Script/ContentBuilder/assets/email-blocks/images/034.jpg
Normal file
|
After Width: | Height: | Size: 10 KiB |
BIN
web/App_Script/ContentBuilder/assets/email-blocks/images/035.jpg
Normal file
|
After Width: | Height: | Size: 19 KiB |
BIN
web/App_Script/ContentBuilder/assets/email-blocks/images/036.jpg
Normal file
|
After Width: | Height: | Size: 22 KiB |
BIN
web/App_Script/ContentBuilder/assets/email-blocks/images/037.jpg
Normal file
|
After Width: | Height: | Size: 20 KiB |
BIN
web/App_Script/ContentBuilder/assets/email-blocks/images/038.jpg
Normal file
|
After Width: | Height: | Size: 23 KiB |
BIN
web/App_Script/ContentBuilder/assets/email-blocks/images/039.jpg
Normal file
|
After Width: | Height: | Size: 29 KiB |
|
After Width: | Height: | Size: 9.6 KiB |
|
After Width: | Height: | Size: 15 KiB |
|
After Width: | Height: | Size: 9.6 KiB |
|
After Width: | Height: | Size: 15 KiB |
|
After Width: | Height: | Size: 11 KiB |
|
After Width: | Height: | Size: 10 KiB |
|
After Width: | Height: | Size: 9.8 KiB |
BIN
web/App_Script/ContentBuilder/assets/email-blocks/images/046.jpg
Normal file
|
After Width: | Height: | Size: 5.9 KiB |
BIN
web/App_Script/ContentBuilder/assets/email-blocks/images/048.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
web/App_Script/ContentBuilder/assets/email-blocks/images/049.png
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
web/App_Script/ContentBuilder/assets/email-blocks/images/050.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
web/App_Script/ContentBuilder/assets/email-blocks/images/075.jpg
Normal file
|
After Width: | Height: | Size: 50 KiB |
BIN
web/App_Script/ContentBuilder/assets/email-blocks/images/076.jpg
Normal file
|
After Width: | Height: | Size: 13 KiB |
BIN
web/App_Script/ContentBuilder/assets/email-blocks/images/077.jpg
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
web/App_Script/ContentBuilder/assets/email-blocks/images/078.jpg
Normal file
|
After Width: | Height: | Size: 7.8 KiB |
BIN
web/App_Script/ContentBuilder/assets/email-blocks/images/079.jpg
Normal file
|
After Width: | Height: | Size: 9.0 KiB |
BIN
web/App_Script/ContentBuilder/assets/email-blocks/images/081.jpg
Normal file
|
After Width: | Height: | Size: 9.1 KiB |
BIN
web/App_Script/ContentBuilder/assets/email-blocks/images/082.jpg
Normal file
|
After Width: | Height: | Size: 7.2 KiB |
BIN
web/App_Script/ContentBuilder/assets/email-blocks/images/091.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
web/App_Script/ContentBuilder/assets/email-blocks/images/092.jpg
Normal file
|
After Width: | Height: | Size: 5.8 KiB |
BIN
web/App_Script/ContentBuilder/assets/email-blocks/images/093.jpg
Normal file
|
After Width: | Height: | Size: 5.3 KiB |
BIN
web/App_Script/ContentBuilder/assets/email-blocks/images/094.jpg
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
web/App_Script/ContentBuilder/assets/email-blocks/images/095.jpg
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
web/App_Script/ContentBuilder/assets/email-blocks/images/096.jpg
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
web/App_Script/ContentBuilder/assets/email-blocks/images/097.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
web/App_Script/ContentBuilder/assets/email-blocks/images/098.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
web/App_Script/ContentBuilder/assets/email-blocks/images/099.png
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
web/App_Script/ContentBuilder/assets/email-blocks/images/100.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
web/App_Script/ContentBuilder/assets/email-blocks/images/101.jpg
Normal file
|
After Width: | Height: | Size: 10 KiB |
BIN
web/App_Script/ContentBuilder/assets/email-blocks/images/102.jpg
Normal file
|
After Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 8.5 KiB |
|
After Width: | Height: | Size: 7.7 KiB |
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 13 KiB |
|
After Width: | Height: | Size: 7.8 KiB |
BIN
web/App_Script/ContentBuilder/assets/email-blocks/images/106.jpg
Normal file
|
After Width: | Height: | Size: 7.0 KiB |
BIN
web/App_Script/ContentBuilder/assets/email-blocks/images/107.jpg
Normal file
|
After Width: | Height: | Size: 7.3 KiB |
BIN
web/App_Script/ContentBuilder/assets/email-blocks/images/109.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 8.5 KiB |
BIN
web/App_Script/ContentBuilder/assets/email-blocks/images/111.jpg
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
web/App_Script/ContentBuilder/assets/email-blocks/images/112.jpg
Normal file
|
After Width: | Height: | Size: 23 KiB |
BIN
web/App_Script/ContentBuilder/assets/email-blocks/images/113.jpg
Normal file
|
After Width: | Height: | Size: 18 KiB |
BIN
web/App_Script/ContentBuilder/assets/email-blocks/images/114.jpg
Normal file
|
After Width: | Height: | Size: 19 KiB |
|
After Width: | Height: | Size: 2.0 KiB |
|
After Width: | Height: | Size: 357 B |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 861 B |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 1.7 KiB |
BIN
web/App_Script/ContentBuilder/assets/email-blocks/images/118.jpg
Normal file
|
After Width: | Height: | Size: 9.9 KiB |
BIN
web/App_Script/ContentBuilder/assets/email-blocks/images/119.jpg
Normal file
|
After Width: | Height: | Size: 9.7 KiB |
|
After Width: | Height: | Size: 615 B |
|
After Width: | Height: | Size: 455 B |
BIN
web/App_Script/ContentBuilder/assets/email-blocks/images/121.jpg
Normal file
|
After Width: | Height: | Size: 5.7 KiB |
|
After Width: | Height: | Size: 650 B |
|
After Width: | Height: | Size: 484 B |
|
After Width: | Height: | Size: 155 B |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 4.0 KiB |
|
After Width: | Height: | Size: 2.8 KiB |