├── source
├── responsive.css
├── styles.css
└── gmail-first-gutters.html
└── gmail-first-gutters.html
/source/responsive.css:
--------------------------------------------------------------------------------
1 | body {
2 | margin: 0;
3 | padding: 0;
4 | -ms-text-size-adjust: 100%;
5 | -webkit-text-size-adjust: 100%;
6 | }
7 |
8 | table {
9 | border-spacing: 0;
10 | }
11 |
12 | table td {
13 | border-collapse: collapse;
14 | }
15 |
16 | .ExternalClass {
17 | width: 100%;
18 | }
19 |
20 | .ExternalClass,
21 | .ExternalClass p,
22 | .ExternalClass span,
23 | .ExternalClass font,
24 | .ExternalClass td,
25 | .ExternalClass div {
26 | line-height: 100%;
27 | }
28 |
29 | .ReadMsgBody {
30 | width: 100%;
31 | background-color: #ebebeb;
32 | }
33 |
34 | table {
35 | mso-table-lspace: 0pt;
36 | mso-table-rspace: 0pt;
37 | }
38 |
39 | img {
40 | -ms-interpolation-mode: bicubic;
41 | }
42 |
43 | .yshortcuts a {
44 | border-bottom: none !important;
45 | }
46 |
47 | @media screen and (max-width: 599px) {
48 | .container {
49 | width: 100% !important;
50 | max-width: 100% !important;
51 | }
52 | }
53 | .banner,
54 | .intro {
55 | padding-left: 20px !important;
56 | padding-right: 20px !important;
57 | }
58 |
59 | .col-1-td {
60 | padding-left: 20px !important;
61 | padding-right: 10px !important;
62 | }
63 |
64 | .col-2-td {
65 | padding-left: 10px !important;
66 | padding-right: 20px !important;
67 | }
68 |
69 | @media screen and (max-width: 599px) {
70 | .container {
71 | width: 100%;
72 | max-width: 100%;
73 | }
74 |
75 | .col {
76 | width: 50% !important;
77 | max-width: 50% !important;
78 | }
79 | }
80 | @media screen and (max-width: 500px) {
81 | .col {
82 | width: 100% !important;
83 | max-width: 100% !important;
84 | }
85 |
86 | .banner,
87 | .intro,
88 | .col td {
89 | padding-left: 10px !important;
90 | padding-right: 10px !important;
91 | }
92 |
93 | .image img {
94 | width: 100% !important;
95 | }
96 |
97 | .title {
98 | padding-top: 10px;
99 | }
100 | }
101 |
--------------------------------------------------------------------------------
/source/styles.css:
--------------------------------------------------------------------------------
1 | body {
2 | margin: 0;
3 | padding: 0;
4 | }
5 |
6 | .content {
7 | background-color: #ffffff;
8 | }
9 |
10 | .title {
11 | font-weight: bold;
12 | font-size: 24px;
13 | line-height: 28px;
14 | font-family: Helvetica, Arial, sans-serif;
15 | }
16 |
17 | .body-text {
18 | font-size: 16px;
19 | line-height: 20px;
20 | font-family: Helvetica, Arial, sans-serif;
21 | }
22 |
23 | table[align="center"] {
24 | margin-left: auto;
25 | margin-right: auto;
26 | }
27 |
28 | .button td {
29 | -webkit-border-radius: 3px;
30 | -moz-border-radius: 3px;
31 | border-radius: 3px;
32 | background-color: #2095F2;
33 | }
34 | .button a {
35 | -webkit-border-radius: 3px;
36 | -moz-border-radius: 3px;
37 | border-radius: 3px;
38 | font-weight: bold;
39 | font-size: 14px;
40 | line-height: 20px;
41 | font-family: Helvetica, Arial, sans-serif;
42 | text-decoration: none;
43 | display: inline-block;
44 | padding: 12px 18px;
45 | border: 1px solid #0e89eb;
46 | background-color: #2095F2;
47 | }
48 | .button.green td, .button.green a {
49 | background-color: #27ae60;
50 | border-color: #229955;
51 | }
52 | .button.yellow td, .button.yellow a {
53 | background-color: #f1c40f;
54 | border-color: #dab10d;
55 | color: #6F4F1D;
56 | }
57 |
58 | .container {
59 | background-color: #ffffff;
60 | }
61 |
62 | .posts {
63 | padding-top: 20px;
64 | }
65 |
66 | .col {
67 | width: 100%;
68 | max-width: 300px;
69 | }
70 |
71 | .col-1 td,
72 | .col-2 td {
73 | padding-left: 10px;
74 | padding-right: 10px;
75 | }
76 |
77 | .banner,
78 | .intro {
79 | padding-left: 10px;
80 | padding-right: 10px;
81 | }
82 |
83 | .banner {
84 | background-color: #c0392b;
85 | color: #ffffff;
86 | font-size: 30px;
87 | line-height: 36px;
88 | font-family: Helvetica, Arial, sans-serif;
89 | padding-top: 20px;
90 | padding-bottom: 20px;
91 | text-align: center;
92 | }
93 |
94 | .intro {
95 | padding-top: 20px;
96 | padding-bottom: 20px;
97 | font-weight: 300;
98 | font-size: 20px;
99 | line-height: 28px;
100 | font-family: Helvetica, Arial, sans-serif;
101 | color: #333333;
102 | text-align: left;
103 | }
104 |
105 | .cta {
106 | padding-bottom: 10px;
107 | }
108 |
109 | .image img {
110 | display: block;
111 | width: 100%;
112 | min-width: 100%;
113 | max-width: 100%;
114 | height: auto;
115 | border-top: 10px solid #c0392b;
116 | }
117 |
118 | .title {
119 | font-weight: bold;
120 | font-size: 20px;
121 | line-height: 24px;
122 | font-family: Helvetica, Arial, sans-serif;
123 | color: #d35400;
124 | padding-top: 20px;
125 | padding-bottom: 6px;
126 | text-align: left;
127 | }
128 |
129 | .text {
130 | font-size: 14px;
131 | line-height: 20px;
132 | font-family: Helvetica, Arial, sans-serif;
133 | color: #333333;
134 | padding-bottom: 30px;
135 | text-align: left;
136 | }
137 |
--------------------------------------------------------------------------------
/source/gmail-first-gutters.html:
--------------------------------------------------------------------------------
1 |
3 |
4 |
5 |
6 |
7 |
8 |
9 | Gmail First Gutters demo
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 | Gmail First Gutters Demo
26 |
27 |
28 |
29 |
30 | They were all in the best of spirits, and laughed and chatted together. Dorothy was once more filled with the hope of getting home, and the Scarecrow and the Tin Woodman were glad to be of use to her. As for the Lion, he sniffed the fresh air with delight and whisked his tail from side to side in pure joy at being in the country again, while Toto ran around them and chased the moths and butterflies, barking merrily all the time.
31 |
32 |
33 |
34 |
35 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 | Leaves are falling
58 |
59 |
60 | I felt sad at this, for it showed I was not such a good Scarecrow after all; but the old crow comforted me, saying, 'If you only had brains in your head you would be as good a man as any of them, and a better man than some of them.'
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 | Pumpkin growing contests
78 |
79 |
80 | 'I wonder if that farmer thought to fool me in this clumsy manner. Any crow of sense could see that you are only stuffed with straw.' Then he hopped down at my feet and ate all the corn he wanted.
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
--------------------------------------------------------------------------------
/gmail-first-gutters.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 | Gmail First Gutters demo
9 |
10 |
112 |
113 |
114 |
115 |
116 |
117 |
118 |
119 |
120 |
121 |
122 |
123 |
124 |
125 |
126 | Gmail First Gutters Demo
127 |
128 |
129 |
130 |
131 | They were all in the best of spirits, and laughed and chatted together. Dorothy was once more filled with the hope of getting home, and the Scarecrow and the Tin Woodman were glad to be of use to her. As for the Lion, he sniffed the fresh air with delight and whisked his tail from side to side in pure joy at being in the country again, while Toto ran around them and chased the moths and butterflies, barking merrily all the time.
132 |
133 |
134 |
135 |
136 |
141 |
142 |
143 |
144 |
145 |
146 |
147 |
148 |
149 |
150 |
151 |
152 |
153 |
154 |
155 |
156 |
157 |
158 | Leaves are falling
159 |
160 |
161 | I felt sad at this, for it showed I was not such a good Scarecrow after all; but the old crow comforted me, saying, 'If you only had brains in your head you would be as good a man as any of them, and a better man than some of them.'
162 |
163 |
164 |
165 |
166 |
167 |
168 |
169 |
170 |
171 |
172 |
173 |
174 |
175 |
176 |
177 |
178 | Pumpkin growing contests
179 |
180 |
181 | 'I wonder if that farmer thought to fool me in this clumsy manner. Any crow of sense could see that you are only stuffed with straw.' Then he hopped down at my feet and ate all the corn he wanted.
182 |
183 |
184 |
185 |
186 |
187 |
188 |
189 |
190 |
191 |
192 |
193 |
194 |
195 |
196 |
197 |
198 |
199 |
--------------------------------------------------------------------------------