forked from devshelf/devshelf-articles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
css.json
1130 lines (1130 loc) · 45.3 KB
/
css.json
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
{
"css": [
{
"url": "http://dbushell.com/2012/04/23/modularity-and-style-guides/",
"title": "Modularity and Style Guides",
"author": "David Bushell",
"tags": [
"code style guides",
"css best practises",
"oocss"
]
},
{
"url": "http://operatino.github.io/MCSS/en/",
"title": "Multilayer CSS",
"description": "Multilayer CSS organization methodology is based on BEM and OOCSS principles. It was invented in Odnoklassniki.ru (Top 10 world social network) developers team and is recommended for other developers as core for own documentation and team based methodologies.",
"author": "Robert Haritonov",
"author-link": "http://rhr.me",
"author-mail": "[email protected]",
"id": "mcss",
"tags": [
"css methodologies",
"code style guides"
]
},
{
"url": "http://smacss.com/",
"title": "Scalable and Modular Architecture for CSS",
"description": "SMACSS is a way to examine your design process and as a way to fit those rigid frameworks into a flexible thought process. It is an attempt to document a consistent approach to site development when using CSS.",
"author": "Jonathan Snook",
"author-link": "http://snook.ca/",
"tags": [
"css methodologies",
"code style guides"
]
},
{
"url": "http://csswizardry.com/2013/07/writing-dryer-vanilla-css/",
"title": "Writing DRYer vanilla CSS",
"author": "Harry Roberts",
"author-link": "http://csswizardry.com",
"author-mail": "[email protected]",
"tags": [
"css best practises",
"best practises"
]
},
{
"url": "http://csswizardry.com/2013/05/scope-in-css/",
"title": "‘Scope’ in CSS",
"author": "Harry Roberts",
"author-link": "http://csswizardry.com",
"author-mail": "[email protected]",
"tags": [
"css best practises",
"best practises"
]
},
{
"url": "http://csswizardry.com/2012/11/code-smells-in-css/",
"title": "Code smells in CSS",
"author": "Harry Roberts",
"author-link": "http://csswizardry.com",
"author-mail": "[email protected]",
"tags": [
"css best practises",
"best practises"
]
},
{
"url": "http://csswizardry.com/2012/07/shoot-to-kill-css-selector-intent/",
"title": "Shoot to kill; CSS selector intent",
"description": "A great article about writing efficient selectors in CSS.",
"author": "Harry Roberts",
"author-link": "http://csswizardry.com",
"author-mail": "[email protected]",
"tags": [
"css best practises",
"best practises"
]
},
{
"url": "http://csswizardry.com/2012/04/the-single-responsibility-principle-applied-to-css/",
"title": "The single responsibility principle applied to CSS",
"description": "Taking best practises from OO programming.",
"author": "Harry Roberts",
"author-link": "http://csswizardry.com",
"author-mail": "[email protected]",
"tags": [
"css best practises",
"best practises"
]
},
{
"url": "http://css-tricks.com/one-two-three/",
"title": "One, Two, or Three",
"author": "Chris Coyier",
"tags": [
"css best practises"
]
},
{
"url": "http://coding.smashingmagazine.com/2012/07/13/coding-qa-with-chris-coyier-code-smell-type-grid/",
"title": "Coding Q&A With Chris Coyier: Code Smell And Type On A Grid",
"author": "Chris Coyier",
"tags": [
"css best practises"
]
},
{
"url": "http://github.com/necolas/idiomatic-css",
"title": "Principles of writing consistent, idiomatic CSS",
"description": "The following document outlines a reasonable style guide for CSS development. These guidelines strongly encourage the use of existing, common, sensible patterns. They should be adapted as needed to create your own style guide.",
"author": "Nicolas Gallagher",
"author-link": "http://nicolasgallagher.com",
"author-mail": "[email protected]",
"tags": [
"css best practises",
"code style guides",
"best practises"
]
},
{
"url": "http://www.css3.info/preview/box-shadow/",
"title": "Box-shadow, one of CSS3's best new features",
"tags": [
"box-shadow"
]
},
{
"url": "http://css3gen.com/box-shadow/",
"title": "CSS3 Box Shadow Generator",
"tags": [
"box-shadow"
]
},
{
"url": "http://updates.html5rocks.com/2012/06/The-amazing-powers-of-CSS",
"title": "The amazing powers of CSS",
"author": "Ilmari Heikkinen",
"tags": [
"tricks",
"pseudo class",
"selectors"
]
},
{
"url": "http://www.netmagazine.com/tutorials/more-efficient-css3-transitions",
"title": "More efficient CSS3 transitions",
"author": "Val Head",
"tags": [
"transition"
]
},
{
"url": "http://alistapart.com/article/understanding-css3-transitions/",
"title": "Understanding CSS3 Transitions",
"description": "I like to think of CSS transitions like butter, smoothing out value changes in your stylesheets when triggered by interactions like hovering, clicking, and focusing. Unlike real butter, transitions aren’t fattening—they’re just a few simple rules in your stylesheet to enrich certain events in your designs.",
"tags": [
"transition",
"animation"
]
},
{
"url": "http://demosthenes.info/blog/540/Animating-CSS3-Image-Filters",
"title": "Animating CSS3 Image Filters",
"author": "Dudley Storey",
"tags": [
"transition",
"images",
"filters",
"animation"
]
},
{
"url": "http://www.css3.info/preview/css3-transitions/",
"title": "An Introduction to CSS3 Transitions",
"description": "CSS3 Transitions are a presentational effect which allow property changes in CSS values, such as those that may be defined to occur on :hover or :focus, to occur smoothly over a specified duration – rather than happening instantaneously as is the normal behaviour.",
"tags": [
"transition",
"animation"
]
},
{
"url": "https://developer.mozilla.org/en-US/docs/Web/Guide/CSS/Using_CSS_transitions",
"title": "Using CSS transitions",
"description": "CSS transitions let you decide which properties to animate (by listing them explicitly), when the animation will start (by setting a delay), how long the transition will last (by setting a duration), and how the transition will run (by defining a timing function, e.g. linearly or quick at the beginning, slow at the end).",
"tags": [
"transition",
"animation",
"mdn"
]
},
{
"url": "http://coding.smashingmagazine.com/2007/07/27/css-specificity-things-you-should-know/",
"title": "CSS Specificity: Things You Should Know",
"author": "Vitaly Friedman",
"tags": [
"specificity"
]
},
{
"url": "http://www.typotheque.com/articles/opentype_features_in_web_browsers",
"title": "OpenType features in web browsers",
"author": "Gustavo Ferreira",
"tags": [
"fonts",
"opentype",
"draft"
]
},
{
"url": "http://www.paulirish.com/2009/fighting-the-font-face-fout/",
"title": "Fighting the @font-face FOUT",
"author": "Paul Irish",
"tags": [
"fonts",
"@font-face"
]
},
{
"url": "http://designshack.net/articles/css/a-beginners-guide-to-using-google-web-fonts/",
"title": "A Beginner’s Guide to Using Google Web Fonts",
"author": "Joshua Johnson",
"tags": [
"fonts"
]
},
{
"url": "http://nicolasgallagher.com/micro-clearfix-hack/",
"title": "A new micro clearfix hack",
"author": "Nicolas Gallagher",
"tags": [
"clearfix",
"float"
]
},
{
"url": "http://philipwalton.github.io/solved-by-flexbox/",
"title": "Solved by Flexbox",
"author": "Philip Walton",
"tags": [
"flexbox"
]
},
{
"url": "http://dev.opera.com/articles/view/advanced-cross-browser-flexbox/",
"title": "Advanced cross-browser flexbox",
"author": "Chris Mills",
"tags": [
"flexbox"
]
},
{
"url": "http://net.tutsplus.com/tutorials/html-css-techniques/an-introduction-to-css-flexbox/",
"title": "An Introduction to the CSS Flexbox Module",
"author": "Umar Hansa",
"tags": [
"flexbox"
]
},
{
"url": "http://www.phpied.com/css-variables/",
"title": "CSS variables",
"author": "Stoyan Stefanov",
"tags": [
"variables"
]
},
{
"url": "http://www.xanthir.com/blog/b4JF0",
"title": "How CSS Handles Errors",
"author": "Tab Atkins Jr.",
"tags": [
"css3",
"errors",
"valid code"
]
},
{
"url": "http://lab.cubiq.org/css3mad/",
"title": "CSS3 Mad",
"author": "Cubiq",
"tags": [
"css3"
]
},
{
"url": "http://csswizardry.com/2012/07/quasi-qualified-css-selectors/",
"title": "Quasi-qualified CSS selectors",
"author": "Harry Roberts",
"author-link": "http://csswizardry.com",
"author-mail": "[email protected]",
"tags": [
"css3",
"performance"
]
},
{
"url": "http://www.igvita.com/2012/06/14/debunking-responsive-css-performance-myths/",
"title": "Debunking Responsive CSS Performance Myths",
"author": "Ilya Grigorik",
"tags": [
"css3",
"responsive",
"performance"
]
},
{
"url": "http://webdesign.tutsplus.com/tutorials/htmlcss-tutorials/perfectly-rotate-and-mask-thumbnails-with-css3/",
"title": "Perfectly Rotate and Mask Thumbnails With CSS3",
"author": "Jim Nielsen",
"tags": [
"css3",
"images",
"rotate",
"design"
]
},
{
"url": "http://www.developerdrive.com/2012/07/introduction-to-sass/",
"title": "Introduction to Sass",
"author": "Alex Ball",
"tags": [
"preprocessors",
"sass"
]
},
{
"url": "http://www.developerdrive.com/2012/04/learning-less-an-introduction/",
"title": "Learning LESS",
"author": "Alex Ball",
"tags": [
"preprocessors",
"less"
]
},
{
"url": "http://www.w3.org/blog/CSS/2012/06/14/unprefix-webkit-device-pixel-ratio/",
"title": "How to unprefix -webkit-device-pixel-ratio",
"author": "W3C",
"tags": [
"media rules",
"best-practices",
"media queries",
"responsive"
]
},
{
"url": "http://dev.opera.com/articles/view/responsive-images-problem/",
"title": "Responsive images: what's the problem, and how do we fix it?",
"author": "Matt Wilcox",
"tags": [
"responsive",
"rwd"
]
},
{
"url": "http://coding.smashingmagazine.com/2013/11/05/killer-responsive-layouts-with-css-regions/",
"title": "Killer Responsive Layouts With CSS Regions",
"author": "CJ Gammon",
"tags": [
"responsive",
"rwd",
"regions"
]
},
{
"url": "http://www.campaignmonitor.com/guides/mobile/",
"title": "Responsive Email Design",
"author": "Campaign Monitor",
"tags": [
"responsive",
"email"
]
},
{
"url": "http://palantir.net/blog/responsive-design-s-dirty-little-secret",
"title": "Responsive Design’s Dirty Little Secret",
"author": "John Albin Wilkins",
"tags": [
"responsive"
]
},
{
"url": "http://miekd.com/articles/using-css-sprites-to-optimize-your-website-for-retina-displays/",
"title": "Using CSS Sprites to optimize your website for Retina Displays",
"author": "Maykel Loomans",
"tags": [
"sprites",
"retina"
]
},
{
"url": "http://coding.smashingmagazine.com/2012/06/14/coding-qa-with-chris-coyier-box-sizing-and-css-sprites/",
"title": "Coding Q&A With Chris Coyier: Box-Sizing and CSS Sprites",
"author": "Chris Coyier",
"tags": [
"sprites",
"box-sizing"
]
},
{
"url": "http://css-tricks.com/show-markup-in-css-comments/",
"title": "Show Markup in CSS Comments",
"author": "Chris Coyier",
"tags": [
"comments",
"markup"
]
},
{
"url": "http://coding.smashingmagazine.com/2006/09/02/list-of-css-tools/",
"title": "List of CSS Tools",
"author": "Sven Lennartz",
"tags": [
"tools"
]
},
{
"url": "http://coding.smashingmagazine.com/2007/01/19/53-css-techniques-you-couldnt-live-without/",
"title": "53 CSS-Techniques You Couldn’t Live Without",
"author": "Vitaly Friedman",
"tags": [
"techniques"
]
},
{
"url": "http://www.thecssninja.com/css/reveal-effect",
"title": "Curtain reveal effect using CSS",
"author": "Ryan Seddon",
"tags": [
"techniques"
]
},
{
"url": "http://coding.smashingmagazine.com/2007/02/21/printing-the-web-solutions-and-techniques/",
"title": "Printing the Web: Solutions and Techniques",
"author": "Vitaly Friedman",
"tags": [
"print"
]
},
{
"url": "http://coding.smashingmagazine.com/2007/05/01/css-float-theory-things-you-should-know/",
"title": "CSS Float Theory: Things You Should Know",
"author": "Vitaly Friedman",
"tags": [
"float"
]
},
{
"url": "http://generatedcontent.org/post/26407228072/split-feature",
"title": "Creating an angled split feature area with CSS transforms",
"author": "David Storey",
"tags": [
"transform"
]
},
{
"url": "http://css-tricks.com/media-queries-sass-3-2-and-codekit/",
"title": "Media Queries, Sass 3.2, and CodeKit",
"author": "Chris Coyier",
"tags": [
"media queries"
]
},
{
"url": "http://blog.cloudfour.com/the-ems-have-it-proportional-media-queries-ftw/",
"title": "The EMs have it: Proportional Media Queries FTW!",
"author": "Lyza Gardner",
"tags": [
"media queries"
]
},
{
"url": "http://davidwalsh.name/css-columns",
"title": "CSS Columns",
"author": "David Walsh",
"tags": [
"columns"
]
},
{
"url": "http://www.html5rocks.com/en/tutorials/regions/adobe/",
"title": "Magazine-like Layout for the Web with CSS Regions and Exclusions",
"author": "Christian Cantrell",
"tags": [
"regions"
]
},
{
"url": "http://filamentgroup.com/lab/how_we_learned_to_leave_body_font_size_alone/",
"title": "How we learned to leave default font-size alone and embrace the em",
"author": "Filament Group",
"tags": [
"em"
]
},
{
"url": "http://davidwalsh.name/text-align-start",
"title": "text-align: start & RTL",
"author": "David Walsh",
"tags": [
"text-align"
]
},
{
"url": "http://blogs.adobe.com/webplatform/2012/07/17/new-blending-features-in-css/",
"title": "New blending features in CSS",
"author": "Rik Cabanier",
"tags": [
"blend"
]
},
{
"url": "http://blogs.adobe.com/cantrell/archives/2012/07/css-regions-arent-just-for-columns.html",
"title": "CSS Regions Aren’t Just For Columns",
"author": "Christian Cantrell",
"tags": [
"regions"
]
},
{
"url": "http://www.html5rocks.com/en/mobile/high-dpi/",
"title": "High DPI Images for Variable Pixel Densities",
"author": "Boris Smus",
"tags": [
"hight dpi"
]
},
{
"url": "http://demosthenes.info/blog/568/Create-Rich-Web-Typography-With-CSS3-&-OpenType-Discretionary-Ligatures-&-True-Small-Caps",
"title": "Create Rich Web Typography With CSS3 & OpenType: Discretionary Ligatures & True Small Caps",
"author": "Dudley Storey",
"tags": [
"typography",
"opentype",
"fonts"
]
},
{
"url": "http://www.sketchingwithcss.com/samplechapter/cheatsheet.html",
"title": "The Ultimate Flexbox Cheat Sheet",
"tags": [
"flexbox"
]
},
{
"url": "https://github.com/csswizardry/CSS-Guidelines",
"title": "General CSS notes, advice and guidelines",
"author": "Harry Roberts",
"author-mail": "[email protected]",
"author-link": "http://csswizardry.com",
"tags": [
"code style guides",
"css best practises",
"best practises"
]
},
{
"url": "http://designshack.net/articles/css/5-steps-to-drastically-improve-your-css-knowledge-in-24-hours/",
"title": "5 Steps to Drastically Improve Your CSS Knowledge in 24 Hours",
"author": "Joshua Johnson",
"tags": [
"fast learning"
]
},
{
"url": "http://www.kirupa.com/html5/introduction_to_animation_html.htm",
"title": "Introduction to Animation in HTML",
"description": "In HTML, there isn't just a single animation implementation that you can use. You actually have three flavors of animation to choose from, and each one is specialized for certain kinds of tasks.",
"author": "Kirupa Chinnathambi",
"tags": [
"animation"
]
},
{
"url": "http://blog.millermedeiros.com/solid-css/",
"title": "Solid CSS",
"author": "Miller H. Borges Medeiros"
},
{
"url": "http://www.adobe.com/devnet/html5/articles/using-css3-transitions-a-comprehensive-guide.html",
"title": "Using CSS3 transitions: A comprehensive guide",
"author": "Louis Lazaris",
"id": "Z16R8L0"
},
{
"url": "http://davidwalsh.name/pointer-media-query",
"title": "Pointer Media Query",
"author": "David Walsh",
"tags": [
"media queries"
]
},
{
"url": "http://hop.ie/blog/stereoscopic/",
"title": "Stereoscopic CSS",
"author": "Donovan Hutchinson",
"tags": [
"3d"
]
},
{
"url": "http://html5hub.com/after-float/",
"title": "After: float",
"author": "Kyle Simpson",
"tags": [
"float"
]
},
{
"url": "http://www.creativebloq.com/css3/avoid-css-mistakes-10135080",
"title": "10 CSS mistakes every web designer must avoid",
"author": "Pam Selle",
"tags": [
"fast learning"
]
},
{
"url": "http://alistapart.com/article/web-animation-at-work/",
"title": "Web Animation at Work",
"description": "Just as hierarchy guides users through content, animation guides them through interactions by helping them understand relationships, structure, cause, and effect. Animation shouldn’t be a nice-to-have. It is critical to communication.",
"author": "Rachel Nabors",
"tags": [
"animation"
]
},
{
"url": "http://blog.tumult.com/2013/02/28/transform-translate-vs-top-left/",
"title": "Myth busting the HTML5 performance of transform:translate vs. top/left",
"author": "Jonathan Deutsch",
"tags": [
"animation",
"performance"
]
},
{
"url": "http://www.html5rocks.com/en/tutorials/speed/high-performance-animations/",
"title": "High Performance Animations",
"description": "Modern browsers can animate four things really cheaply: position, scale, rotation and opacity. If you animate anything else, the chances are you’re not going to hit a silky smooth 60fps.",
"author": "Paul Lewis, Paul Irish",
"tags": [
"animation",
"performance"
]
},
{
"url": "http://www.paulirish.com/2012/why-moving-elements-with-translate-is-better-than-posabs-topleft/",
"title": "Why Moving Elements With Translate() Is Better Than Pos:abs Top/left",
"author": "Paul Irish",
"tags": [
"animation",
"performance"
]
},
{
"url": "http://css-tricks.com/css-animation-tricks/",
"title": "CSS Animation Tricks: State Jumping, Negative Delays, Animating Origin, and More",
"description": "To create the animations as I imagine them using as few elements as possible, I've found some tricks to make CSS do things you might not know it could do. I'd like to share them with you.",
"author": "Zach Saucier",
"tags": [
"animation"
]
},
{
"url": "http://www.beyondkinetic.com/motion-ui-design-principles/",
"title": "Motion Ui Design Principles",
"description": "With the increasing emphasis on motion its important that it is implemented with the same integrity and purpose as all the other aspects of Ui design. With the exclusion of skeuomorphic design there is now a freedom for content to behave in an unrestricted manner.",
"author": "Grant Liddall",
"tags": [
"animation",
"UX"
]
},
{
"url": "http://alistapart.com/article/ui-animation-and-ux-a-not-so-secret-friendship/",
"title": "UI Animation and UX: A Not-So-Secret Friendship",
"description": "When used as more than just a subtle design detail, animation can provide cues, guide the eye, and soften the sometimes-hard edges of web interactions. It can improve the user experience. And we can do it with CSS.",
"author": "Val Head",
"tags": [
"animation",
"UX"
]
},
{
"url": "http://css-tricks.com/myth-busting-css-animations-vs-javascript/",
"title": "Myth Busting: CSS Animations vs. JavaScript",
"description": "CSS Animations have been talked about endlessly at conferences where phrases like \"hardware accelerated\" and \"mobile-friendly\" tickle the ears of the audience. JavaScript-based animation was treated as if it was antiquated and \"dirty\". But is it?",
"author": "Jack Doyle",
"tags": [
"animation",
"performance"
]
},
{
"url": "http://www.smashingmagazine.com/2014/04/15/understanding-css-timing-functions/",
"title": "Understanding CSS Timing Functions",
"description": "The timing function is a bit of a hidden gem when it comes to CSS animation, and you could well be surprised by just how much you can do with it.",
"author": "Stephen Greig",
"tags": [
"animation",
"transition"
]
},
{
"url": "http://www.smashingmagazine.com/2013/10/23/smart-transitions-in-user-experience-design/",
"title": "Smart Transitions In User Experience Design",
"description": "Some websites outperform others, whether in their content, usability, design, features, etc. Details of interaction design and animation make a fundamental difference on modern websites. We’ll share some lessons drawn from various models and analyze why these simple patterns work so well.",
"author": "Adrian Zumbrunnen",
"tags": [
"animation",
"transition",
"UX"
]
},
{
"url": "http://www.html5rocks.com/en/tutorials/speed/css-paint-times/",
"title": "CSS Paint Times and Page Render Weight",
"author": "Colt McAnlis",
"tags": [
"performance"
]
},
{
"url": "http://blog.sapegin.me/all/opor-methodology",
"title": "OPOR",
"author": "Artem Sapegin",
"author-mail": "[email protected]",
"author-link": "http://sapegin.me/",
"tags": [
"css methodologies"
],
"description": "I like BEM. But I’m not Yandex, Google or any other huge company that builds all the internet so I found BEM is too strict for me.\r\n\r\nThe point of OPOR (One Page of Rules) is that all rules and recommendations are contained on a single page. It combines best parts of BEM, SMACSS and OOCSS. It’s not a religion and it’s suitable for any small to medium project."
},
{
"url": "http://oocss.org/",
"title": "Object-Oriented CSS",
"author": "Nicole Sullivan",
"author-link": "http://www.stubbornella.org/",
"tags": [
"css methodologies",
"css best practises"
]
},
{
"url": "http://css-tricks.com/video-screencasts/110-quick-overview-of-css-position-values/",
"title": "Quick Overview of CSS Position Values",
"author": "Chris Coyier",
"author-link": "http://chriscoyier.net/",
"description": "Chris Coyier explains different CSS position values in detail. If you’re (kind of) new to CSS, this is the video you should watch.",
"tags": [
"rookie",
"standarts"
]
},
{
"url": "http://css-tricks.com/content-folding/",
"title": "Content Folding",
"author": "Chris Coyier",
"author-link": "http://chriscoyier.net/",
"description": "Another fine article about CSS3 regions. This might be go-to solution for responsive design (when browser support improves).",
"tags": [
"flow"
]
},
{
"url": "http://www.impressivewebs.com/css3-attribute-selectors-substring-matching/",
"title": "CSS3 Attribute Selectors: Substring Matching",
"author": "Louis Lazaris",
"author-link": "http://www.impressivewebs.com/about/",
"description": "Attribute selectors are slow (not as slow as in JavaScript, but still), but they can be quite useful; master them, you won’t be sorry.",
"tags": [
"rookie",
"standarts"
]
},
{
"url": "http://coding.smashingmagazine.com/2012/03/22/device-agnostic-approach-to-responsive-web-design/",
"title": "Device-Agnostic Approach To Responsive Web Design",
"author": "Thierry Koblentz",
"author-link": "http://coding.smashingmagazine.com/author/thierry-koblentz/",
"description": "Breakpoints in responsive design should be based on content, not on device sizes. It’s as simple as that.",
"tags": [
"responsive"
]
},
{
"url": "http://designshack.net/articles/css/sass-and-media-queries-what-you-can-and-cant-do/",
"title": "Sass and Media Queries: What You Can and Can’t Do",
"author": "Joshua Johnson",
"author-link": "http://designshack.net/author/joshuajohnson/",
"description": "SASS doesn’t play nicely with media queries (in all situations). To find out exactly what can cause a problem, read this article.",
"tags": [
"preprocessors",
"less",
"mediaqueries"
]
},
{
"url": "http://blog.teamtreehouse.com/getting-started-stylus",
"title": "Getting Started with Stylus",
"author": "David Walsh",
"author-link": "http://blog.teamtreehouse.com/author/davidwalsh",
"description": false,
"tags": [
"preprocessor",
"stylus"
]
},
{
"url": "http://www.feedthebot.com/pagespeed/critical-render-path.html",
"title": "Critical render path",
"author": false,
"author-link": false,
"description": false,
"tags": [
"performance"
]
},
{
"url": "http://css-tricks.com/interviewing-front-end-engineer-san-francisco/",
"title": "Interviewing as a Front-End Engineer in San Francisco",
"author": false,
"author-link": false,
"description": false,
"tags": [
"tutorial"
]
},
{
"url": "http://www.html5rocks.com/en/tutorials/casestudies/hobbit/",
"title": "The Hobbit Experience",
"author": false,
"author-link": false,
"description": false,
"tags": [
"js",
"tutorial"
]
},
{
"url": "http://css-tricks.com/video-screencasts/110-quick-overview-of-css-position-values/",
"title": "Quick Overview of CSS Position Values",
"author": "Chris Coyier",
"author-link": "http://chriscoyier.net/",
"description": "Chris Coyier explains different CSS position values in detail. If you’re (kind of) new to CSS, this is the video you should watch.",
"tags": [
"rookie",
"standarts"
]
},
{
"url": "http://css-tricks.com/content-folding/",
"title": "Content Folding",
"author": "Chris Coyier",
"author-link": "http://chriscoyier.net/",
"description": "Another fine article about CSS3 regions. This might be go-to solution for responsive design (when browser support improves).",
"tags": [
"flow"
]
},
{
"url": "http://www.impressivewebs.com/css3-attribute-selectors-substring-matching/",
"title": "CSS3 Attribute Selectors: Substring Matching",
"author": "Louis Lazaris",
"author-link": "http://www.impressivewebs.com/about/",
"description": "Attribute selectors are slow (not as slow as in JavaScript, but still), but they can be quite useful; master them, you won’t be sorry.",
"tags": [
"rookie",
"standarts"
]
},
{
"url": "http://coding.smashingmagazine.com/2012/03/22/device-agnostic-approach-to-responsive-web-design/",
"title": "Device-Agnostic Approach To Responsive Web Design",
"author": "Thierry Koblentz",
"author-link": "http://coding.smashingmagazine.com/author/thierry-koblentz/",
"description": "Breakpoints in responsive design should be based on content, not on device sizes. It’s as simple as that.",
"tags": [
"responsive"
]
},
{
"url": "http://designshack.net/articles/css/sass-and-media-queries-what-you-can-and-cant-do/",
"title": "Sass and Media Queries: What You Can and Can’t Do",
"author": "Joshua Johnson",
"author-link": "http://designshack.net/author/joshuajohnson/",
"description": "SASS doesn’t play nicely with media queries (in all situations). To find out exactly what can cause a problem, read this article.",
"tags": [
"preprocessors",
"less",
"mediaqueries"
]
},
{
"url": "http://blog.teamtreehouse.com/getting-started-stylus",
"title": "Getting Started with Stylus",
"author": "David Walsh",
"author-link": "http://blog.teamtreehouse.com/author/davidwalsh",
"description": false,
"tags": [
"preprocessor",
"stylus"
]
},
{
"url": "http://css-tricks.com/interviewing-front-end-engineer-san-francisco/",
"title": "Interviewing as a Front-End Engineer in San Francisco",
"author": false,
"author-link": false,
"description": false,
"tags": [
"tutorial"
]
},
{
"url": "http://www.html5rocks.com/en/tutorials/casestudies/hobbit/",
"title": "The Hobbit Experience",
"author": false,
"author-link": false,
"description": false,
"tags": [
"js",
"tutorial"
]
},
{
"url": "http://blog.ponyfoo.com/2014/05/17/css-the-good-parts",
"title": "CSS_ The Good Parts",
"author": "Nicolas Bevacqua",
"author-mail": "[email protected]",
"author-link": "http://bevacqua.io",
"tags": [
"css style-guide"
],
"description": "Thoughts on how the CSS of an application should be modelled"
},
{
"url": "http://tympanus.net/codrops/2014/06/19/ideas-for-subtle-hover-effects/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+tympanus+%28Codrops%29",
"title": "Ideas for Subtle Hover Effects",
"author": "Mary Lou",
"author-link": "http://tympanus.net/codrops/author/crnacura/",
"tags": [
"css",
"hover",
"html"
]
},
{
"url": "http://learn.shayhowe.com/advanced-html-css/responsive-web-design/",
"title": "Responsive Web Design",
"tags": [
"responsive",
"rookie"
],
"description": "The Internet took off quicker than anyone would have predicted, growing like crazy. Now, for the past few years, mobile growth has exploded onto the scene. The growth of mobile Internet usage is also far out pacing that of general Internet usage growth."
},
{
"url": "http://ref.openweb.io/CSS/",
"title": "CSS Reference",
"author": "David Storey",
"author-link": "http://generatedcontent.org/",
"tags": [
"css properties",
"documentation"
],
"description": "Alphabetical list of CSS Properties"
},
{
"url": "http://css3.bradshawenterprises.com/",
"title": "CSS Transitions, Transforms, Animation, Filters adn more",
"author": "Rich Bradshaw",
"tags": [
"css3",
"transition",
"transform",
"animation",
"filter"
],
"description": "This website is designed to help you build modern sites that are able to make use of some of the newer, exciting parts of CSS."
},
{
"url": "http://www.smashingmagazine.com/2011/11/24/how-to-set-up-a-print-style-sheet/",
"title": "How To Set Up A Print Style Sheet",
"author": "Christian Krammer",
"tags": [
"css",
"print",
"media queries",
"tutorial",
"techniques"
],
"description": "Print style sheets are useful and sometimes even necessary. Some readers might want to store your information locally as a well-formatted PDF to refer to the information later on, when they don’t have an Internet connection. However, print styles are often forgotten in the age of responsive Web design."
},
{
"url": "http://css-tricks.com/snippets/css/a-guide-to-flexbox/",
"title": "A Complete Guide to Flexbox",
"tags": [