-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcrumb-lemon-tea-cakes-2018.html
1520 lines (1359 loc) · 95.2 KB
/
crumb-lemon-tea-cakes-2018.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en-US" prefix="og: http://ogp.me/ns#">
<head >
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Meyer Lemon Poppyseed Tea Cakes - Crumb: A Food Blog</title>
<!-- Social Warfare v2.3.5 https://warfareplugins.com -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Sunny Days: Meyer Lemon Poppyseed Tea Cakes">
<meta name="twitter:description" content="These past few months of winter have felt a little short on sunshine, both literally and metaphorically. Without getting too far into the details, suffice to say that there's been more than the usual share of dreary days, like I've got a personal-sized rain cloud following me wherever I go. (Or maybe a snow cloud... there's been plenty of that, too.) As is often the case when the going gets rough, I've been doing a whole lot of therapeutic baking. I like to believe that, in copious quantities, butter and sugar have the magical ability to make everything feel a">
<meta name="twitter:image" content="http://www.crumbblog.com/wp-content/uploads/2018/03/File-2018-03-18-9-34-05-PM.jpeg">
<meta name="twitter:site" content="@izzbell">
<style>@font-face {font-family: "sw-icon-font";src:url("http://www.crumbblog.com/wp-content/plugins/social-warfare/fonts/sw-icon-font.eot?ver=2.3.5");src:url("http://www.crumbblog.com/wp-content/plugins/social-warfare/fonts/sw-icon-font.eot?ver=2.3.5#iefix") format("embedded-opentype"),url("http://www.crumbblog.com/wp-content/plugins/social-warfare/fonts/sw-icon-font.woff?ver=2.3.5") format("woff"), url("http://www.crumbblog.com/wp-content/plugins/social-warfare/fonts/sw-icon-font.ttf?ver=2.3.5") format("truetype"),url("http://www.crumbblog.com/wp-content/plugins/social-warfare/fonts/sw-icon-font.svg?ver=2.3.5#1445203416") format("svg");font-weight: normal;font-style: normal;}</style>
<!-- Social Warfare v2.3.5 https://warfareplugins.com -->
<!-- This site is optimized with the Yoast SEO plugin v7.5.3 - https://yoast.com/wordpress/plugins/seo/ -->
<meta name="description" content="These sunny bite-sized cakes are crispy around the edges and slightly chewy in the middle, with loads of tangy Meyer lemon flavour."/>
<link rel="canonical" href="http://www.crumbblog.com/meyer-lemon-poppyseed-tea-cakes/" />
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="article" />
<meta property="og:title" content="Meyer Lemon Poppyseed Tea Cakes - Crumb: A Food Blog" />
<meta property="og:description" content="These sunny bite-sized cakes are crispy around the edges and slightly chewy in the middle, with loads of tangy Meyer lemon flavour." />
<meta property="og:url" content="http://www.crumbblog.com/meyer-lemon-poppyseed-tea-cakes/" />
<meta property="og:site_name" content="Crumb: A Food Blog" />
<meta property="article:section" content="cake" />
<meta property="article:published_time" content="2018-03-19T07:24:37-04:00" />
<meta property="article:modified_time" content="2018-03-19T15:05:49-04:00" />
<meta property="og:updated_time" content="2018-03-19T15:05:49-04:00" />
<meta property="og:image" content="http://www.crumbblog.com/wp-content/uploads/2018/03/File-2018-03-18-9-34-05-PM-500x500.jpeg" />
<meta property="og:image:width" content="500" />
<meta property="og:image:height" content="500" />
<meta property="og:image:alt" content="Meyer Lemon Poppyseed Tea Cakes" />
<!-- / Yoast SEO plugin. -->
<link rel='dns-prefetch' href='//scripts.mediavine.com' />
<link rel='dns-prefetch' href='//fonts.googleapis.com' />
<link rel='dns-prefetch' href='//s.w.org' />
<link rel="alternate" type="application/rss+xml" title="Crumb: A Food Blog » Feed" href="http://www.crumbblog.com/feed/" />
<link rel="alternate" type="application/rss+xml" title="Crumb: A Food Blog » Comments Feed" href="http://www.crumbblog.com/comments/feed/" />
<link rel="alternate" type="application/rss+xml" title="Crumb: A Food Blog » Sunny Days: Meyer Lemon Poppyseed Tea Cakes Comments Feed" href="http://www.crumbblog.com/meyer-lemon-poppyseed-tea-cakes/feed/" />
<script type="text/javascript">
window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/2.4\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/2.4\/svg\/","svgExt":".svg","source":{"concatemoji":"http:\/\/www.crumbblog.com\/wp-includes\/js\/wp-emoji-release.min.js?ver=f612aa25903aeea2fbc835ee2f5a4281"}};
!function(a,b,c){function d(a,b){var c=String.fromCharCode;l.clearRect(0,0,k.width,k.height),l.fillText(c.apply(this,a),0,0);var d=k.toDataURL();l.clearRect(0,0,k.width,k.height),l.fillText(c.apply(this,b),0,0);var e=k.toDataURL();return d===e}function e(a){var b;if(!l||!l.fillText)return!1;switch(l.textBaseline="top",l.font="600 32px Arial",a){case"flag":return!(b=d([55356,56826,55356,56819],[55356,56826,8203,55356,56819]))&&(b=d([55356,57332,56128,56423,56128,56418,56128,56421,56128,56430,56128,56423,56128,56447],[55356,57332,8203,56128,56423,8203,56128,56418,8203,56128,56421,8203,56128,56430,8203,56128,56423,8203,56128,56447]),!b);case"emoji":return b=d([55357,56692,8205,9792,65039],[55357,56692,8203,9792,65039]),!b}return!1}function f(a){var c=b.createElement("script");c.src=a,c.defer=c.type="text/javascript",b.getElementsByTagName("head")[0].appendChild(c)}var g,h,i,j,k=b.createElement("canvas"),l=k.getContext&&k.getContext("2d");for(j=Array("flag","emoji"),c.supports={everything:!0,everythingExceptFlag:!0},i=0;i<j.length;i++)c.supports[j[i]]=e(j[i]),c.supports.everything=c.supports.everything&&c.supports[j[i]],"flag"!==j[i]&&(c.supports.everythingExceptFlag=c.supports.everythingExceptFlag&&c.supports[j[i]]);c.supports.everythingExceptFlag=c.supports.everythingExceptFlag&&!c.supports.flag,c.DOMReady=!1,c.readyCallback=function(){c.DOMReady=!0},c.supports.everything||(h=function(){c.readyCallback()},b.addEventListener?(b.addEventListener("DOMContentLoaded",h,!1),a.addEventListener("load",h,!1)):(a.attachEvent("onload",h),b.attachEvent("onreadystatechange",function(){"complete"===b.readyState&&c.readyCallback()})),g=c.source||{},g.concatemoji?f(g.concatemoji):g.wpemoji&&g.twemoji&&(f(g.twemoji),f(g.wpemoji)))}(window,document,window._wpemojiSettings);
</script>
<style type="text/css">
img.wp-smiley,
img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 .07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}
</style>
<link rel='stylesheet' id='beautiful-pro-theme-css' href='http://www.crumbblog.com/wp-content/themes/beautiful-pro/style.css?ver=1.1' type='text/css' media='all' />
<link rel='stylesheet' id='gppro-webfonts-css' href='//fonts.googleapis.com/css?family=Abril+Fatface%7CSource+Sans+Pro%3A300%2C400%2C700%2C300italic%2C400italic%2C700italic%7CArvo%3A400%2C700%2C400italic%2C700italic&ver=1.0.7' type='text/css' media='all' />
<link rel='stylesheet' id='social_warfare-css' href='http://www.crumbblog.com/wp-content/plugins/social-warfare/css/style.min.css?ver=2.3.5' type='text/css' media='all' />
<link rel='stylesheet' id='dashicons-css' href='http://www.crumbblog.com/wp-includes/css/dashicons.min.css?ver=f612aa25903aeea2fbc835ee2f5a4281' type='text/css' media='all' />
<link rel='stylesheet' id='google-fonts-css' href='//fonts.googleapis.com/css?family=Lato%3A300%2C400%2C700%7CRaleway%3A400%2C500&ver=1.1' type='text/css' media='all' />
<link rel='stylesheet' id='simple-social-icons-font-css' href='http://www.crumbblog.com/wp-content/plugins/simple-social-icons/css/style.css?ver=2.0.1' type='text/css' media='all' />
<link rel='stylesheet' id='gppro-style-css' href='//www.crumbblog.com/wp-content/uploads/gppro/gppro-custom-1.css?ver=1522803979' type='text/css' media='all' />
<script type='text/javascript' async="async" data-noptimize="1" data-cfasync="false" src='//scripts.mediavine.com/tags/crumb.js?ver=f612aa25903aeea2fbc835ee2f5a4281'></script>
<script type='text/javascript' src='http://www.crumbblog.com/wp-includes/js/jquery/jquery.js?ver=1.12.4'></script>
<script type='text/javascript' src='http://www.crumbblog.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=1.4.1'></script>
<!--[if lt IE 9]>
<script type='text/javascript' src='http://www.crumbblog.com/wp-content/themes/genesis/lib/js/html5shiv.min.js?ver=3.7.3'></script>
<![endif]-->
<script type='text/javascript' src='http://www.crumbblog.com/wp-content/themes/beautiful-pro/js/responsive-menu.js?ver=1.0.0'></script>
<script type='text/javascript' src='http://www.crumbblog.com/wp-content/plugins/simple-social-icons/svgxuse.js?ver=1.1.21'></script>
<link rel='https://api.w.org/' href='http://www.crumbblog.com/wp-json/' />
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://www.crumbblog.com/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://www.crumbblog.com/wp-includes/wlwmanifest.xml" />
<link rel='shortlink' href='http://www.crumbblog.com/?p=7976' />
<link rel="alternate" type="application/json+oembed" href="http://www.crumbblog.com/wp-json/oembed/1.0/embed?url=http%3A%2F%2Fwww.crumbblog.com%2Fmeyer-lemon-poppyseed-tea-cakes%2F" />
<link rel="alternate" type="text/xml+oembed" href="http://www.crumbblog.com/wp-json/oembed/1.0/embed?url=http%3A%2F%2Fwww.crumbblog.com%2Fmeyer-lemon-poppyseed-tea-cakes%2F&format=xml" />
<script type="text/javascript">
var _statcounter = _statcounter || [];
_statcounter.push({"tags": {"author": "Isabelle"}});
</script>
<script type="text/javascript">
(function(url){
if(/(?:Chrome\/26\.0\.1410\.63 Safari\/537\.31|WordfenceTestMonBot)/.test(navigator.userAgent)){ return; }
var addEvent = function(evt, handler) {
if (window.addEventListener) {
document.addEventListener(evt, handler, false);
} else if (window.attachEvent) {
document.attachEvent('on' + evt, handler);
}
};
var removeEvent = function(evt, handler) {
if (window.removeEventListener) {
document.removeEventListener(evt, handler, false);
} else if (window.detachEvent) {
document.detachEvent('on' + evt, handler);
}
};
var evts = 'contextmenu dblclick drag dragend dragenter dragleave dragover dragstart drop keydown keypress keyup mousedown mousemove mouseout mouseover mouseup mousewheel scroll'.split(' ');
var logHuman = function() {
if (window.wfLogHumanRan) { return; }
window.wfLogHumanRan = true;
var wfscr = document.createElement('script');
wfscr.type = 'text/javascript';
wfscr.async = true;
wfscr.src = url + '&r=' + Math.random();
(document.getElementsByTagName('head')[0]||document.getElementsByTagName('body')[0]).appendChild(wfscr);
for (var i = 0; i < evts.length; i++) {
removeEvent(evts[i], logHuman);
}
};
for (var i = 0; i < evts.length; i++) {
addEvent(evts[i], logHuman);
}
})('//www.crumbblog.com/?wordfence_lh=1&hid=C9960193E536C8CD478EB3C4276BD042');
</script><script type="text/javascript">
window._wp_rp_static_base_url = 'https://wprp.zemanta.com/static/';
window._wp_rp_wp_ajax_url = "http://www.crumbblog.com/wp-admin/admin-ajax.php";
window._wp_rp_plugin_version = '3.6.4';
window._wp_rp_post_id = '7976';
window._wp_rp_num_rel_posts = '4';
window._wp_rp_thumbnails = true;
window._wp_rp_post_title = 'Sunny+Days%3A+Meyer+Lemon+Poppyseed+Tea+Cakes';
window._wp_rp_post_tags = ['winter', 'cake', 'dessert', 'sugar', 'cloud', 'butter', 'magic', 'lemon', 'amplifi', 'golden', 'cake', 'bake', 'snow', 'meyer', 'brush', 'sunshin', 'tea', 'grei'];
window._wp_rp_promoted_content = true;
</script>
<link rel="stylesheet" href="http://www.crumbblog.com/wp-content/plugins/wordpress-23-related-posts-plugin/static/themes/vertical.css?version=3.6.4" />
<script type="application/ld+json">
{
"@context": "https:\/\/schema.org\/",
"@type": "Recipe",
"name": "Meyer Lemon Poppyseed Tea Cakes",
"description": "These sunny bite-sized tea cakes are crispy around the edges and slightly chewy in the middle, with a tangy and subtly floral Meyer lemon flavour.",
"author": {
"@type": "Thing",
"name": "Isabelle Boucher (Crumb_"
},
"image": [
"http:\/\/www.crumbblog.com\/wp-content\/uploads\/2018\/03\/File-2018-03-18-9-34-05-PM-225x225.jpeg",
"http:\/\/www.crumbblog.com\/wp-content\/uploads\/2018\/03\/File-2018-03-18-9-34-05-PM-260x195.jpeg",
"http:\/\/www.crumbblog.com\/wp-content\/uploads\/2018\/03\/File-2018-03-18-9-34-05-PM-320x180.jpeg",
"http:\/\/www.crumbblog.com\/wp-content\/uploads\/2018\/03\/File-2018-03-18-9-34-05-PM.jpeg"
],
"url": "http:\/\/www.crumbblog.com\/meyer-lemon-poppyseed-tea-cakes\/",
"recipeIngredient": [
"1\/2 cup unsalted butter, softened",
"1 1\/4 cups sugar",
"1 tbsp grated Meyer lemon zest",
"2 tbsp fresh-squeezed Meyer lemon juice",
"2 large eggs",
"1 cup all-purpose flour",
"1\/4 cup poppy seeds",
"1\/2 tsp salt",
"1\/2 cup water",
"1\/2 cup sugar",
"1 Meyer lemon, cut into slices"
],
"recipeInstructions": [
"Preheat oven to 350 degrees. Lightly butter a 24-cup mini-muffin pan.",
"In a large bowl, beat butter, sugar, and lemon zest until light and creamy. Stir in the lemon juice and eggs, and mix well. Gradually add the flour, poppy seeds and salt, stirring until combined.",
"Spoon the batter into the prepared muffin tin, dividing evenly. Bake in preheated oven for 18-20 minutes, or until the cakes are golden around edges and a toothpick inserted in center comes out clean.",
"While the cakes are baking, make the syrup. Combine the water and sugar in a small saucepan set over medium heat, and bring to a simmer. Add the lemon slices, and cook for 5 minutes or until the lemon is soft. Remove from heat, and set aside to cool until the cakes are done.",
"Using a toothpick, poke holes all over the tops of the cakes as soon as they come out of the oven. Drizzle with the lemon syrup over each cake. Let the cakes cool in the pan for 10 minutes, then transfer to a wire rack to cool completely."
],
"prepTime": "PT10M",
"cookTime": "PT20M",
"totalTime": "PT30M",
"recipeYield": "24",
"recipeCategory": "Desserts",
"recipeCuisine": "French"
}
</script>
<style type="text/css">
.comment-form .tasty-recipes-ratings-buttons {
unicode-bidi: bidi-override;
direction: rtl;
text-align: center; }
.comment-form .tasty-recipes-ratings-buttons > span {
display: inline-block;
position: relative;
width: 1.1em; }
.comment-form .tasty-recipes-ratings-buttons > span i {
font-style: normal; }
.comment-form .tasty-recipes-ratings-buttons > span .unchecked {
display: inline-block; }
.comment-form .tasty-recipes-ratings-buttons > span .checked {
display: none; }
.comment-form .tasty-recipes-ratings-buttons > *:hover .unchecked,
.comment-form .tasty-recipes-ratings-buttons > *:hover ~ span .unchecked,
.comment-form .tasty-recipes-ratings-buttons:not(:hover) > input:checked ~ span .unchecked {
display: none; }
.comment-form .tasty-recipes-ratings-buttons > *:hover .checked,
.comment-form .tasty-recipes-ratings-buttons > *:hover ~ span .checked,
.comment-form .tasty-recipes-ratings-buttons:not(:hover) > input:checked ~ span .checked {
display: inline-block; }
.comment-form .tasty-recipes-ratings-buttons > *:hover:before .unchecked,
.comment-form .tasty-recipes-ratings-buttons > *:hover ~ span:before .unchecked,
.comment-form .tasty-recipes-ratings-buttons:not(:hover) > input:checked ~ span:before .unchecked {
display: inline-block; }
.comment-form .tasty-recipes-ratings-buttons > *:hover:before .checked,
.comment-form .tasty-recipes-ratings-buttons > *:hover ~ span:before .checked,
.comment-form .tasty-recipes-ratings-buttons:not(:hover) > input:checked ~ span:before .checked {
display: none; }
.comment-form .tasty-recipes-ratings-buttons > input {
margin-left: -1.1em;
margin-right: 0;
top: 3px;
width: 1.1em;
height: 1.1em;
position: relative;
z-index: 2;
opacity: 0; }
</style>
<link rel="icon" href="http://www.crumbblog.com/wp-content/uploads/2011/05/crumbfavicon.ico" />
<link rel="pingback" href="http://www.crumbblog.com/xmlrpc.php" />
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-8719932-2', 'auto');
ga('send', 'pageview');
</script><style type="text/css" media="screen"> .simple-social-icons ul li a, .simple-social-icons ul li a:hover, .simple-social-icons ul li a:focus { background-color: #a82f6e !important; border-radius: 25px; color: #ffffff !important; border: 0px #a82f6e solid !important; font-size: 18px; padding: 9px; } .simple-social-icons ul li a:hover, .simple-social-icons ul li a:focus { background-color: #ffffff !important; border-color: #a82f6e !important; color: #a82f6e !important; } .simple-social-icons ul li a:focus { outline: 1px dotted #ffffff !important; }</style><style type='text/css'>.custom-background .site-header-banner { background: #ffffff repeat left scroll; } </style><style type="text/css">
html body div.easyrecipe { font-family: Lato!important;font-weight: normal!important;font-size: 14px!important;border: 1px solid rgb(232, 223, 228)!important;background-color: rgb(255, 253, 245)!important; }
html body div.easyrecipe { font-family: Lato!important;font-weight: normal!important;font-size: 14px!important;border: 1px solid rgb(232, 223, 228)!important;background-color: rgb(255, 253, 245)!important; }
html body div.easyrecipe .ERSName { font-family: Abril Fatface!important;color: rgb(122, 30, 71)!important;font-weight: normal!important;font-size: 25px!important;margin-top: 5px!important;margin-left: 5px!important; }
html body div.easyrecipe .ERSSummary { margin-left: 0px!important;font-size: 13px!important;font-family: Lato!important;font-style: italic!important;margin-bottom: 10px!important;margin-top: 15px!important; }
html body div.easyrecipe .ERSAuthor { font-weight: normal!important; }
html body div.easyrecipe .ERSPrintBtnSpan .ERSPrintBtn { background-color: rgb(168, 47, 109)!important;font-size: 14px!important;margin-top: 5px!important; }
html body div.easyrecipe .ERSIngredientsHeader { color: rgb(122, 30, 71)!important;font-family: 'Abril Fatface'!important;font-weight: normal!important;font-size: 16px!important;margin-left: 5px!important;margin-bottom: 5px!important;margin-top: 20px!important; }
html body div.easyrecipe .ERSIngredients li.ingredient { font-family: Lato!important;list-style-type: square!important;list-style-position: inside!important; }
html body div.easyrecipe .ERSInstructionsHeader { color: rgb(122, 30, 71)!important;font-family: 'Abril Fatface'!important;font-weight: normal!important;font-size: 16px!important;margin-bottom: 5px!important;margin-top: 20px!important; }
html body div.easyrecipe .ERSInstructions .instruction { list-style-position: outside!important;list-style-type: decimal!important;margin-left: 25px!important;padding-top: 5px!important; }
html body div.easyrecipe .ERSNotesDiv .ERSNotesHeader { font-family: Abril Fatface!important;font-weight: normal!important;font-size: 16px!important;color: rgb(122, 30, 71)!important; }
html body div.easyrecipe {
background: url(http://www.crumbblog.com/wp-content/uploads/2015/04/speckled-off-white.jpg) repeat;
}</style>
<style type="text/css" id="wp-custom-css">
/*
You can add your own CSS here.
.widget_wpcom_social_media_icons_widget .genericon {
font-size: 36px;
}
Click the help icon above to learn more.
*/
/*
CSS Migrated from Jetpack:
*/
/*
Welcome to Custom CSS!
To learn how this works, see http://wp.me/PEmnE-Bt
*/
/* Changes the style of the overall form */
#mc_embed_signup {
background: #f8f8f8;
color: #000000;
padding: 20px;
text-align: center;
}
/* Styles the header text above the inputs */
#mc_embed_signup h2 {
font-size: 18px;
margin: 0 0 20px;
color: #000000;
text-align: center;
}
/* Adds extra space around the input boxes */
#mc_embed_signup .mc-field-group {
padding: 10px 0;
}
/* Styles the input boxes */
#mc_embed_signup input {
width: 200px;
}
/* Styles the subscribe button */
#mc_embed_signup .button {
background-color: #000000;
color: ##a82f6e;
margin: 0 auto;
/* Jetpack social media icon styling */
} </style>
</head>
<body class="post-template-default single single-post postid-7976 single-format-standard gppro-custom header-image content-sidebar beautiful" itemscope itemtype="https://schema.org/WebPage"><div class="site-container"><header class="site-header" itemscope itemtype="https://schema.org/WPHeader"><div class="wrap"><div class="title-area"><p class="site-title" itemprop="headline"><a href="http://www.crumbblog.com/">Crumb: A Food Blog</a></p><p class="site-description" itemprop="description">made from scratch recipes from a seasonal kitchen</p></div><div class="widget-area header-widget-area"><section id="text-16" class="widget widget_text"><div class="widget-wrap"> <div class="textwidget"></div>
</div></section>
</div><script src="//my.hellobar.com/70c7369d17367bace8d6dd705be143f8037dcb10.js" type="text/javascript" charset="utf-8" async="async"></script></div></header><nav class="nav-primary" aria-label="Main" itemscope itemtype="https://schema.org/SiteNavigationElement"><div class="wrap"><ul id="menu-menu1" class="menu genesis-nav-menu menu-primary"><li id="menu-item-8" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-home menu-item-8"><a href="http://www.crumbblog.com/" itemprop="url"><span itemprop="name">Home</span></a></li>
<li id="menu-item-2624" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-2624"><a href="http://www.crumbblog.com/about-crumb/" itemprop="url"><span itemprop="name">About Crumb</span></a>
<ul class="sub-menu">
<li id="menu-item-9" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-9"><a href="http://www.crumbblog.com/about-isabelle/" itemprop="url"><span itemprop="name">About Isabelle</span></a></li>
<li id="menu-item-2120" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2120"><a href="http://www.crumbblog.com/press/" itemprop="url"><span itemprop="name">Press, Awards and Contributions</span></a></li>
<li id="menu-item-4443" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4443"><a href="http://www.crumbblog.com/about-crumb/privacy-policy/" itemprop="url"><span itemprop="name">Privacy Policy</span></a></li>
</ul>
</li>
<li id="menu-item-2623" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-2623"><a href="http://www.crumbblog.com/recipes/" itemprop="url"><span itemprop="name">Recipes</span></a>
<ul class="sub-menu">
<li id="menu-item-6658" class="menu-item menu-item-type-post_type menu-item-object-easyindex menu-item-6658"><a href="http://www.crumbblog.com/indexes/recipe-index-2/" itemprop="url"><span itemprop="name">Recipe Index</span></a></li>
<li id="menu-item-276" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-276"><a href="http://www.crumbblog.com/about-the-recipes/" itemprop="url"><span itemprop="name">About the Recipes</span></a></li>
</ul>
</li>
</ul></div></nav><div class="site-inner"><div class="content-sidebar-wrap"><main class="content"><article class="post-7976 post type-post status-publish format-standard has-post-thumbnail category-cake category-dessert category-winter entry" itemscope itemtype="https://schema.org/CreativeWork"><header class="entry-header"><h1 class="entry-title" itemprop="headline">Sunny Days: Meyer Lemon Poppyseed Tea Cakes</h1>
<p class="entry-meta"><time class="entry-time" itemprop="datePublished" datetime="2018-03-19T07:24:37+00:00">March 19, 2018</time> By <span class="entry-author" itemprop="author" itemscope itemtype="https://schema.org/Person"><a href="http://www.crumbblog.com/author/superdisco/" class="entry-author-link" itemprop="url" rel="author"><span class="entry-author-name" itemprop="name">Isabelle Boucher</span></a></span> <span class="entry-comments-link"><a href="http://www.crumbblog.com/meyer-lemon-poppyseed-tea-cakes/#comments">2 Comments</a></span> | <span class="entry-categories">Filed Under: <a href="http://www.crumbblog.com/category/cake/" rel="category tag">cake</a>, <a href="http://www.crumbblog.com/category/dessert/" rel="category tag">dessert</a>, <a href="http://www.crumbblog.com/category/winter/" rel="category tag">winter</a></span> </p></header><div class="entry-content" itemprop="text"><p>These past few months of winter have felt a little short on sunshine, both literally and metaphorically.</p>
<p><a title="Meyer Lemon Poppyseed Tea Cakes" href="https://www.flickr.com/photos/polkaroo/39996765395/in/dateposted-public/"><img class="aligncenter" src="https://farm5.staticflickr.com/4773/39996765395_8b1403e31f_z.jpg" alt="Meyer Lemon Poppyseed Tea Cakes" width="427" height="640" /></a></p>
<p>Without getting too far into the details, suffice to say that there’s been more than the usual share of dreary days, like I’ve got a personal-sized rain cloud following me wherever I go. (Or maybe a snow cloud… there’s been plenty of that, too.)</p>
<p>As is often the case when the going gets rough, I’ve been doing a whole lot of therapeutic baking. I like to believe that, in copious quantities, butter and sugar have the magical ability to make everything feel a little better, even if it’s only temporary.<span id="more-7976"></span></p>
<p><a title="Meyer Lemon Poppyseed Tea Cakes" href="https://www.flickr.com/photos/polkaroo/39996764955/in/dateposted-public/"><img class="aligncenter" src="https://farm1.staticflickr.com/793/39996764955_df6ea11bfa.jpg" alt="Meyer Lemon Poppyseed Tea Cakes" width="500" height="333" /></a></p>
<p>Take these two-bite teacakes – they’re a bite like edible sunshine, a perfect antidote to these grey days.</p>
<p>They’re dense and sweet, with crispy golden edges and a slightly chewy centre, with a knock-you-upside-the-head lemon flavour that’s amplified by a final brushing of lemon syrup.</p>
<p><a title="Meyer Lemon Poppyseed Tea Cakes" href="https://www.flickr.com/photos/polkaroo/40182624864/in/dateposted-public/"><img class="aligncenter" src="https://farm1.staticflickr.com/783/40182624864_3c9c1d7de2_z.jpg" alt="Meyer Lemon Poppyseed Tea Cakes" width="427" height="640" /></a></p>
<p>These simple cakes started off as a serendipitous accident – a Martha Stewart recipe for <a href="https://www.marthastewart.com/337605/lemon-lime-tea-cakes">lemon-lime tea cakes</a> that neglected to include a very important “divided” after the sugar measurement, which in turn resulted in me adding a double-dose of sugar in the batter.</p>
<p>Thankfully, instead of disaster, I ended up with a batch of delightfully dense and slightly chewy bite-sized cakes that paired perfectly with a mug of strong black tea. Think classic buttery French financiers, only without the nuts.</p>
<p>They’ve become one of my go-to recipes when I need a burst of sunshine in my life, either plain or dotted with crunchy poppy seeds as I’ve done here.</p>
<p><a title="Meyer Lemon Poppyseed Tea Cakes" href="https://www.flickr.com/photos/polkaroo/26017676537/in/dateposted-public/"><img class="aligncenter" src="https://farm1.staticflickr.com/813/26017676537_66a340de34.jpg" alt="Meyer Lemon Poppyseed Tea Cakes" width="500" height="500" /></a></p>
<p>When made with Meyer lemons, their sunny lemon flavour takes on a subtly floral note, but they’re quite lovely made with regular lemons if you can’t get your hands on some Meyers. Heck, they’d be pretty lovely made with grapefruit or blood orange, too. Or go all out with a combo of your favourite citrus fruits.</p>
<p>Much like any cure, two of these and a good night’s sleep make for a sunnier morning. Perhaps not literally, but certainly metaphorically.</p>
<p>//</p>
<a class="button tasty-recipes-print-button tasty-recipes-no-print" href="http://www.crumbblog.com/meyer-lemon-poppyseed-tea-cakes/print/7977/">Print</a><div id="tasty-recipes-7977" class="tasty-recipes tasty-recipes-7977 tasty-recipes-display tasty-recipes-has-image">
<style type="text/css">
.tasty-recipes-image {
float: right; }
.tasty-recipes-print-button {
background-color: #666677;
display: inline-block;
padding-left: 1em;
padding-right: 1em;
padding-top: 0.5em;
padding-bottom: 0.5em;
text-decoration: none; }
a.tasty-recipes-print-button {
color: #FFF; }
a.tasty-recipes-print-button:hover {
color: #FFF; }
.tasty-recipes-rating.tasty-recipes-clip-10 {
-webkit-clip-path: polygon(0 0, 10% 0%, 10% 100%, 0% 100%);
clip-path: polygon(0 0, 10% 0%, 10% 100%, 0% 100%); }
.tasty-recipes-rating.tasty-recipes-clip-20 {
-webkit-clip-path: polygon(0 0, 20% 0%, 20% 100%, 0% 100%);
clip-path: polygon(0 0, 20% 0%, 20% 100%, 0% 100%); }
.tasty-recipes-rating.tasty-recipes-clip-30 {
-webkit-clip-path: polygon(0 0, 30% 0%, 30% 100%, 0% 100%);
clip-path: polygon(0 0, 30% 0%, 30% 100%, 0% 100%); }
.tasty-recipes-rating.tasty-recipes-clip-40 {
-webkit-clip-path: polygon(0 0, 40% 0%, 40% 100%, 0% 100%);
clip-path: polygon(0 0, 40% 0%, 40% 100%, 0% 100%); }
.tasty-recipes-rating.tasty-recipes-clip-50 {
-webkit-clip-path: polygon(0 0, 50% 0%, 50% 100%, 0% 100%);
clip-path: polygon(0 0, 50% 0%, 50% 100%, 0% 100%); }
.tasty-recipes-rating.tasty-recipes-clip-60 {
-webkit-clip-path: polygon(0 0, 60% 0%, 60% 100%, 0% 100%);
clip-path: polygon(0 0, 60% 0%, 60% 100%, 0% 100%); }
.tasty-recipes-rating.tasty-recipes-clip-70 {
-webkit-clip-path: polygon(0 0, 70% 0%, 70% 100%, 0% 100%);
clip-path: polygon(0 0, 70% 0%, 70% 100%, 0% 100%); }
.tasty-recipes-rating.tasty-recipes-clip-80 {
-webkit-clip-path: polygon(0 0, 80% 0%, 80% 100%, 0% 100%);
clip-path: polygon(0 0, 80% 0%, 80% 100%, 0% 100%); }
.tasty-recipes-rating.tasty-recipes-clip-90 {
-webkit-clip-path: polygon(0 0, 90% 0%, 90% 100%, 0% 100%);
clip-path: polygon(0 0, 90% 0%, 90% 100%, 0% 100%); }
.tasty-recipes-nutrition ul {
list-style-type: none;
margin: 0;
padding: 0; }
.tasty-recipes-nutrition ul:after {
display: block;
content: ' ';
clear: both; }
.tasty-recipes-nutrition li {
float: left;
margin-right: 1em; }
@media print {
.tasty-recipes-no-print, .tasty-recipes-no-print * {
display: none !important; } }
.tasty-recipes {
border: 2px solid #666677;
margin-top: 6em;
margin-bottom: 4em;
}
.tasty-recipes-print-button {
display: none;
}
.tasty-recipes-image-shim {
height: 69.5px;
clear: both;
}
.tasty-recipes-entry-header {
background-color: #C0C0C0;
background: url(http://www.crumbblog.com/wp-content/uploads/2015/04/speckled-off-white.jpg) repeat;
color: #666677;
text-align: center;
padding-top: 35px;
padding-bottom: 1.5em;
padding-left: 2.5em;
padding-right: 2.5em;
}
.tasty-recipes-entry-header.tasty-recipes-has-image {
padding-top: 0px;
}
.tasty-recipes-entry-header .tasty-recipes-image {
float: none;
text-align: center;
transform: translateY(-115px);
margin-bottom: 1em; /* Decide if we need this */
}
.tasty-recipes-entry-header .tasty-recipes-image img {
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
border: 3px solid #666677;
height: 150px;
width: 150px;
}
.tasty-recipes-entry-header h2 {
font-size: 2em;
font-weight: 100;
text-transform: uppercase;
margin-bottom: 0;
text-align: center;
color: #FFF;
margin-top: 0;
padding-top: 0;
padding-bottom: 0;
}
.tasty-recipes-has-image .tasty-recipes-entry-header h2 {
margin-top: -115px;
}
.tasty-recipes-entry-header hr {
border: 1px solid #666677;
background-color: #666677;
margin-bottom: 1em;
margin-top: 1em;
}
.tasty-recipes-entry-header .tasty-recipes-rating a {
text-decoration: none;
text-decoration: none;
border: none;
}
.tasty-recipes-entry-header .tasty-recipes-rating a:hover {
text-decoration: none;
}
.tasty-recipes-entry-header .tasty-recipes-rating-stars {
font-size: 1.375em;
display: block;
}
.tasty-recipes-entry-header .tasty-recipes-rating-stars span {
margin-left: .25em;
margin-right: .25em;
color: #FFF;
}
.tasty-recipes-entry-header .tasty-recipes-rating-label {
font-style: italic;
color: #666677;
font-size: .6875em;
display: block;
}
.tasty-recipes-entry-header .tasty-recipes-details {
margin-top: 1em;
}
.tasty-recipes-entry-header .tasty-recipes-details ul {
list-style-type: none;
margin: 0;
}
.tasty-recipes-entry-header .tasty-recipes-details ul li {
display: inline-block;
margin-left: .5em;
margin-right: .5em;
font-size: .75em;
line-height: 2.5em;
}
.tasty-recipes-entry-header .tasty-recipes-details ul li.author,
.tasty-recipes-entry-header .tasty-recipes-details ul li.total-time {
display: none;
}
@media only screen and (max-width: 520px) {
.tasty-recipes-entry-header .tasty-recipes-details .detail-icon {
height: .8em;
margin-top: .4em;
}
.tasty-recipes-entry-header .tasty-recipes-details ul li {
font-size: .875em;
line-height: 1.75em;
}
}
@media only screen and (min-width: 520px) {
.tasty-recipes-entry-header .tasty-recipes-details .detail-icon {
height: 1em;
margin-top: .6em;
}
.tasty-recipes-entry-header .tasty-recipes-details ul li {
font-size: 1em;
line-height: 2.5em;
}
}
.tasty-recipes-entry-header .tasty-recipes-details .tasty-recipes-label {
font-style: italic;
color: #666677;
margin-right: .125em;
}
.tasty-recipes-entry-header .tasty-recipes-details .detail-icon {
vertical-align: top;
margin-right: .2em;
}
.tasty-recipes-entry-content {
padding-top: 1.25em;
}
.tasty-recipes-entry-content .tasty-recipes-buttons {
margin-bottom: 1.25em;
margin-left: 1.25em;
margin-right: 1.25em;
}
.tasty-recipes-entry-content .tasty-recipes-buttons:after {
content: " ";
display: block;
clear: both;
}
.tasty-recipes-entry-content .tasty-recipes-button-wrap {
width: 50%;
display: inline-block;
float: left;
box-sizing: border-box;
}
.tasty-recipes-entry-content .tasty-recipes-buttons a {
text-transform: lowercase;
text-align: center;
display: block;
color: #FFFFFF;
background-color: #a82f6e;
font-size: 1em;
line-height: 1.375em;
padding-top: 1em;
padding-bottom: 1em;
font-weight: bold;
margin-top: 0;
border: none;
border-radius: 0;
text-decoration: none;
}
.tasty-recipes-entry-content a img {
box-shadow: none;
-webkit-box-shadow: none;
}
.tasty-recipes-entry-content .tasty-recipes-buttons a:hover {
background-color: #C0C0C0;
text-decoration: none;
}
.tasty-recipes-entry-content .tasty-recipes-buttons img {
vertical-align: top;
}
.tasty-recipes-entry-content .tasty-recipes-buttons img.svg-print,
.tasty-recipes-entry-content .tasty-recipes-buttons img.svg-pinterest {
height: 1.25em;
margin-right: .375em;
margin-bottom: 0;
background: none;
display: inline-block;
}
@media only screen and (min-width: 520px) {
.tasty-recipes-entry-content .tasty-recipes-button-wrap:first-child {
padding-right: .625em;
}
.tasty-recipes-entry-content .tasty-recipes-button-wrap:last-child {
padding-left: .625em;
}
}
@media only screen and (max-width: 520px) {
.tasty-recipes-entry-content .tasty-recipes-button-wrap {
width: 100%;
}
.tasty-recipes-entry-content .tasty-recipes-button-wrap:nth-child(2) {
padding-top: 1em;
}
}
.tasty-recipes-entry-content h3 {
text-transform: lowercase;
font-size: 1.25em;
color: #C0C0C0;
margin-bottom: 1.5em;
}
.tasty-recipes-entry-content h4 {
font-size: 1em;
padding-top: 0;
margin-bottom: 1.5em;
margin-top: 1.5em;
}
.tasty-recipes-entry-content hr {
background-color: #B7BBC6;
border: 1px solid #EAE9EB;
margin-top: 1em;
margin-bottom: 1em;
}
.tasty-recipes-entry-content .tasty-recipes-description,
.tasty-recipes-entry-content .tasty-recipes-ingredients,
.tasty-recipes-entry-content .tasty-recipes-instructions {
padding-left: 1.25em;
padding-right: 1.25em;
}
.tasty-recipes-entry-content .tasty-recipes-description p {
margin-bottom: 1em;
}
.tasty-recipes-entry-content .tasty-recipes-ingredients ul,
.tasty-recipes-entry-content .tasty-recipes-instructions ul {
list-style-type: none;
margin-left: 0;
margin-bottom: 1.5em;
padding: 0;
}
.tasty-recipes-entry-content .tasty-recipes-ingredients ul li,
.tasty-recipes-entry-content .tasty-recipes-instructions ul li {
margin-bottom: .625em;
list-style-type: none;
position: relative;
margin-left: 2.5em;
line-height: 1.46;
}
.tasty-recipes-entry-content .tasty-recipes-ingredients ul li:before,
.tasty-recipes-entry-content .tasty-recipes-instructions ul li:before {
background-color: #666677;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
height: .5em;
width: .5em;
display: block;
content: " ";
left: -1.25em;
top: .375em;
position: absolute;
}
.tasty-recipes-entry-content .tasty-recipes-ingredients ol,
.tasty-recipes-entry-content .tasty-recipes-instructions ol {
counter-reset:li;
margin-left: 0;
padding: 0;
}
.tasty-recipes-entry-content .tasty-recipes-ingredients ol li,
.tasty-recipes-entry-content .tasty-recipes-instructions ol li {
list-style-type: none;
position: relative;
margin-bottom: 1em;
margin-left: 2.5em;
line-height: 1.46;
}
.tasty-recipes-entry-content .tasty-recipes-ingredients ol li:before,
.tasty-recipes-entry-content .tasty-recipes-instructions ol li:before {
content:counter(li);
counter-increment: li;
position: absolute;
background-color: #666677;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
height: 1.45em;
width: 1.45em;
color: #FFF;
left: -1.25em;
transform: translateX(-50%);
line-height: 1.5em;
font-size: .6875em;
text-align: center;
top: .1875em;
}
@media only screen and (max-width: 520px) {
.tasty-recipes-entry-content .tasty-recipes-ingredients ol,
.tasty-recipes-entry-content .tasty-recipes-instructions ol {
margin-left: 0;
}
.tasty-recipes-entry-content .tasty-recipes-ingredients ol li,
.tasty-recipes-entry-content .tasty-recipes-instructions ol li {
}
}
.tasty-recipes-entry-content .tasty-recipes-notes {
padding: 1.25em;
background-color: #EDF0F2;
}
.tasty-recipes-entry-content .tasty-recipes-notes ol {
counter-reset:li;
margin-left: 0;
padding: 0;
}
.tasty-recipes-entry-content .tasty-recipes-notes ul {
margin-left: 0;
padding: 0;
}
.tasty-recipes-entry-content .tasty-recipes-notes p,
.tasty-recipes-entry-content .tasty-recipes-notes ul li,
.tasty-recipes-entry-content .tasty-recipes-notes ol li {
background-color: #FFF;
padding-left: 1.5625em;
padding-right: 1.5625em;
padding-top: 1.25em;
padding-bottom: 1.25em;
position: relative;
-webkit-clip-path: polygon(20px 0, 100% 0, 100% 100%, 0 100%, 0 20px);
clip-path: polygon(20px 0, 100% 0, 100% 100%, 0 100%, 0 20px);
margin-bottom: 1.5em;
}
@media only screen and (min-width: 520px) {
.tasty-recipes-entry-content .tasty-recipes-notes p,
.tasty-recipes-entry-content .tasty-recipes-notes ul li,
.tasty-recipes-entry-content .tasty-recipes-notes ol li {
padding-left: 2.5em;
}
.tasty-recipes-entry-content .tasty-recipes-notes p:before,
.tasty-recipes-entry-content .tasty-recipes-notes ul li:before {
content: "i";
display: block;
background-color: #666677;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
height: 1.3em;
width: 1.3em;
font-size: .75em;
line-height: 1.3em;
text-align: center;
color: #FFF;
position: absolute;
left: 1.167em;
top: 1.9em;
}
.tasty-recipes-entry-content .tasty-recipes-notes ol li:before {
content:counter(li);
counter-increment: li;
position: absolute;
background-color: #666677;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
height: 1.45em;
width: 1.45em;
color: #FFF;
left: 2em;
transform: translateX(-50%);
line-height: 1.5em;
font-size: .6875em;
text-align: center;
top: 2em;
}
}
.tasty-recipes-entry-content .tasty-recipes-notes p:last-child {
margin-bottom: 0;
}
.tasty-recipes-nutrifox {
text-align: center;
margin: 0;
}
.tasty-recipes-nutrifox iframe {
width: 100%;
display: block;
margin: 0;
}
.tasty-recipes-entry-content .tasty-recipes-nutrition {
padding: 1.25em;
color: #666677;
}
.tasty-recipes-nutrition .tasty-recipes-label {
font-style: italic;
color: #B7BBC6;
margin-right: .125em;
font-weight: 400;
}
.tasty-recipes-nutrition ul {
text-align: center;
}
.tasty-recipes-nutrition li {
float: none;
display: inline-block;
line-height: 2em;
}
.tasty-recipes-entry-footer {
background-color: #666677;
padding-top: 1.5625em;
padding-bottom: 1.25em;
padding-left: 2.5em;
padding-right: 2.5em;
text-align: center;
}
.tasty-recipes-entry-footer .tasty-recipes-footer-content {
display: inline-block;
}
.tasty-recipes-entry-footer img {
width: 65px;
}
.tasty-recipes-entry-footer h3 {
color: #B7BBC6;
font-size: 1.25em;
line-height: 2.25em;
margin-top: .5em;
margin-bottom: .125em;
padding: 0;
line-height: 1em;
}
.tasty-recipes-entry-footer p {
margin-bottom: 0;
color: #FFF;
font-size: .75em;
}
.tasty-recipes-entry-footer p a {
color: #FFF;
text-decoration: underline;
box-shadow: none;
border-bottom: none;
}
.tasty-recipes-entry-footer:after {
content: " ";
display: block;
clear:both;
}
@media only screen and (max-width: 520px) {
.tasty-recipes-entry-footer h3 {
margin-top: .5em;
margin-bottom: .5em;
}
.tasty-recipes-entry-footer {
text-align: center;
}
}
@media only screen and (min-width: 520px) {
.tasty-recipes-entry-footer img {
float: left;
}
.tasty-recipes-entry-footer h3,
.tasty-recipes-entry-footer p {
margin-left: 90px;
clear: none;
text-align: left;
}
}
/* Print view styles */
.tasty-recipes-print-view .tasty-recipes-print-button {
display: inline-block;
}
.tasty-recipes-print {
padding:0;
}
.tasty-recipes-print-view .tasty-recipes {
margin-top: 1em;
}
.tasty-recipes-print .tasty-recipes-entry-header {
background-color: inherit;
color: inherit;
padding-bottom: 0;
padding-left: 1em;
padding-right: 1em;
}
.tasty-recipes-print .tasty-recipes-entry-header .tasty-recipes-image {
float: right;
transform: none;
}
.tasty-recipes-print.tasty-recipes-has-image .tasty-recipes-entry-header h2 {
margin-top: 0;
}
.tasty-recipes-print .tasty-recipes-entry-header h2 {
color: inherit;
margin-bottom: .5em;
}
.tasty-recipes-print .tasty-recipes-entry-header hr {
display: none;
}
.tasty-recipes-print .tasty-recipes-entry-header .tasty-recipes-rating-stars span {
color: #000;
}
.tasty-recipes-print .tasty-recipes-entry-header .tasty-recipes-details ul {
padding: 0;
clear: both;
}
.tasty-recipes-print .tasty-recipes-entry-header .tasty-recipes-details ul li {
line-height: 1.5em;
}
.tasty-recipes-print .tasty-recipes-entry-header .tasty-recipes-details .detail-icon {
display: none;
}
</style>
<header class="tasty-recipes-entry-header">
<div class="tasty-recipes-image">
<img width="150" height="150" src="http://www.crumbblog.com/wp-content/uploads/2018/03/File-2018-03-18-9-34-05-PM-150x150.jpeg" class="attachment-thumbnail size-thumbnail" alt="Meyer Lemon Poppyseed Tea Cakes" data-pin-nopin="true" srcset="http://www.crumbblog.com/wp-content/uploads/2018/03/File-2018-03-18-9-34-05-PM-150x150.jpeg 150w, http://www.crumbblog.com/wp-content/uploads/2018/03/File-2018-03-18-9-34-05-PM-300x300.jpeg 300w, http://www.crumbblog.com/wp-content/uploads/2018/03/File-2018-03-18-9-34-05-PM-768x768.jpeg 768w, http://www.crumbblog.com/wp-content/uploads/2018/03/File-2018-03-18-9-34-05-PM-500x500.jpeg 500w, http://www.crumbblog.com/wp-content/uploads/2018/03/File-2018-03-18-9-34-05-PM-225x225.jpeg 225w" sizes="(max-width: 150px) 100vw, 150px" /> </div>
<h2>Meyer Lemon Poppyseed Tea Cakes</h2>
<hr>
<div class="tasty-recipes-details">
<ul>
<li class="author"><span class="tasty-recipes-label">Author:</span> <span class="tasty-recipes-author-name">Isabelle Boucher (Crumb_</span></li>
<li class="prep-time"><span class="tasty-recipes-label"><img class="detail-icon" src="http://www.crumbblog.com/wp-content/themes/beautiful-pro/tr-images/icon-clock-white.png">Prep Time:</span> <span class="tasty-recipes-prep-time">10 mins</span></li>