This repository was archived by the owner on Dec 9, 2024. It is now read-only.
forked from Devographics/locale-en-US
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstate_of_css.yml
813 lines (692 loc) · 28.9 KB
/
state_of_css.yml
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
locale: en-US
namespace: css
translations:
###########################################################################
# General
###########################################################################
- key: general.state_of_css.intro
t: |
CSS is evolving faster than ever.
Flexbox, Grid, Multi-Column… To say nothing of whole new paradigms like CSS-in-JS.
This is where the State of CSS survey comes in: we're taking on the world of styles and selectors to try and identify upcoming trends, and figure out what features and tools to learn next!
- key: general.state_of_css.description
t: The annual developer survey about the latest trends in CSS
###########################################################################
# Sections
###########################################################################
- key: sections.layout.title
t: Layout
- key: sections.layout.description
t: How do you position elements on the screen?
- key: sections.shapes_graphics.title
t: Shapes & Graphics
- key: sections.shapes_graphics.description
t: Controlling the shape and display of elements.
- key: sections.interactions.title
t: Interactions
- key: sections.interactions.description
t: Controlling how the user interacts with the page.
- key: sections.typography.title
t: Typography
- key: sections.typography.description
t: Setting and laying out text.
- key: sections.animations_transforms.title
t: Animations & Transforms
- key: sections.animations_transforms.description
t: Animating and transforming elements.
- key: sections.accessibility.title
t: Accessibility
- key: sections.accessibility.description
t: Accessibility features and techniques.
- key: sections.media_queries.title
t: Media Queries
- key: sections.media_queries.description
t: Ways of adapting your site to the user's device or preferences.
- key: sections.selectors.title
t: Selectors
- key: sections.selectors.description
t: CSS selectors.
- key: sections.colors.title
t: Colors
- key: sections.colors.description
t: Color-related features.
- key: sections.javascript_apis.title
t: JavaScript APIs
- key: sections.javascript_apis.description
t: JavaScript APIs used to control or complement CSS.
- key: sections.other_features.title
t: Other Features
- key: sections.other_features.description
t: Other CSS features.
- key: sections.units_selectors.title
t: Units & Selectors
- key: sections.units_selectors.description
t: Test your knowledge of CSS units and selectors.
- key: sections.pre_post_processors.title
t: Pre-/Post-processors
- key: sections.pre_post_processors.description
t: Utilities that augment CSS.
- key: sections.pre_post_processors_others.title
t: Other Pre-/Post-processors
- key: tools_others.pre_post_processors
aliasFor: sections.pre_post_processors.title
- key: tools_others.pre_post_processors.description
aliasFor: sections.pre_post_processors.description
- key: tools_others.pre_post_processors.others
aliasFor: sections.pre_post_processors_others.title
- key: sections.css_frameworks.title
t: CSS Frameworks
- key: sections.css_frameworks.description
t: Libraries that give you pre-made components and styles.
- key: sections.css_frameworks_others.title
t: Other CSS Frameworks
- key: sections.css_methodologies.title
t: CSS Methodologies
- key: sections.css_methodologies.description
t: Codified ways to write cleaner CSS.
- key: sections.css_methodologies_others.title
t: Other CSS Methodologies.
- key: sections.css_in_js.title
t: CSS-in-JS
- key: sections.css_in_js.description
t: Libraries that help integrate CSS into JavaScript code.
- key: sections.css_in_js_others.title
t: Other CSS-in-JS Libraries.
- key: sections.tools_others.title
t: Other Tools
- key: sections.tools_others.description
t: Other CSS tools.
- key: sections.environments.title
t: Environments
- key: sections.environments.description
t: Which environments and accessibility concerns do you consider when writing CSS?
- key: sections.usage_css.title
t: CSS Usage
- key: sections.usage_css.description
t: How you use CSS.
- key: sections.resources_css.title
t: Resources
- key: sections.resources_css.description
t: What CSS resources do you consult?
###########################################################################
# Options
###########################################################################
# CSS for print
- key: options.css_for_print.0
t: I (almost) never write print styles
- key: options.css_for_print.0.short
t: Never
- key: options.css_for_print.1
t: I occasionally write print styles
- key: options.css_for_print.1.short
t: Occasionally
- key: options.css_for_print.2
t: I write print styles as part of most projects
- key: options.css_for_print.2.short
t: Often
- key: options.css_for_print.3
t: I focus mainly on CSS for print
- key: options.css_for_print.3.short
t: Mainly
# CSS for email
- key: options.css_for_email.0
t: I (almost) never write CSS for email clients
- key: options.css_for_email.0.short
t: Never
- key: options.css_for_email.1
t: I occasionally write CSS for email clients
- key: options.css_for_email.1.short
t: Occasionally
- key: options.css_for_email.2
t: I write CSS for email clients as part of most projects
- key: options.css_for_email.2.short
t: Often
- key: options.css_for_email.3
t: I focus mainly on CSS for email clients
- key: options.css_for_email.3.short
t: Mainly
# what do you use CSS for?
- key: options.what_do_you_use_css_for.marketing_sites
t: Marketing sites & landing pages
- key: options.what_do_you_use_css_for.design_systems
t: Design systems
- key: options.what_do_you_use_css_for.blogs
t: Blogs or other text-heavy sites
- key: options.what_do_you_use_css_for.web_apps
t: Web apps
- key: options.what_do_you_use_css_for.mobile_apps
t: Mobile apps
- key: options.what_do_you_use_css_for.css_art
t: CSS art & illustrations
- key: options.what_do_you_use_css_for.emails
t: Emails
- key: options.what_do_you_use_css_for.printed_documents
t: Printed documents
# CSS pain points
- key: options.css_pain_points.browser_interoperability
t: Browser Compatibility
- key: options.css_pain_points.browser_interoperability.description
t: Differences between Chrome, Safari, Firefox, etc.
- key: options.css_pain_points.interactions
t: Interactions
- key: options.css_pain_points.interactions.description
t: Responding to user input or other events (scroll, hover, etc.).
- key: options.css_pain_points.architecture
t: Architecture & Maintenance
- key: options.css_pain_points.architecture.description
t: File organization, dead code elimination, refactoring, etc.
- key: options.css_pain_points.layout_positioning
t: Layout & Positioning
- key: options.css_pain_points.layout_positioning.description
t: Setting up layouts and making sure elements go where you want them to.
- key: options.css_pain_points.scoping_specificity
t: Scoping & Specificity
- key: options.css_pain_points.scoping_specificity.description
t: Dealing with the cascade, overriding styles, etc.
- key: options.css_pain_points.responsive_design
t: Responsive Design
- key: options.css_pain_points.responsive_design.description
t: Adapting layouts and designs for different form factors.
- key: options.css_pain_points.form_elements_styling
t: Form Elements Styling
- key: options.css_pain_points.form_elements_styling.description
t: Customizing how form elements look and behave.
- key: options.css_pain_points.performance_issues
t: Performance Issues
- key: options.css_pain_points.performance_issues.description
t: Dealing with scrolling jank, making animations smoother, etc.
# CSS missing features (same as features section)
- key: options.currently_missing_from_css.nesting
t: Nesting
- key: options.currently_missing_from_css.nesting.description
t: Being able to nest styles in native CSS.
- key: options.currently_missing_from_css.parent_selector
t: Parent Selector
- key: options.currently_missing_from_css.parent_selector.description
t: The ability to target a parent element based on its children.
- key: options.currently_missing_from_css.browser_support
t: Browser Support
- key: options.currently_missing_from_css.browser_support.description
t: Better browser support for existing features.
- key: options.currently_missing_from_css.mixins
t: Mixins
- key: options.currently_missing_from_css.mixins.description
t: Group and reuse definitions dynamically.
- key: options.currently_missing_from_css.color_functions
t: Color Functions
- key: options.currently_missing_from_css.color_functions.description
t: Functions for manipulating color values.
- key: options.currently_missing_from_css.container_queries
t: Container Queries
- key: options.currently_missing_from_css.container_queries.description
t: Being able to write styles based on the parent container's dimensions.
- key: options.currently_missing_from_css.scoping
t: Scoping
- key: options.currently_missing_from_css.scoping.description
t: The ability to be more specific about where your styles are applied.
- key: options.currently_missing_from_css.subgrid
t: Subgrid
- key: options.currently_missing_from_css.subgrid.description
t: Nesting deeper-level subgrids into a parent grid.
###########################################################################
# Features
###########################################################################
# layout
- key: features.regions
t: CSS Regions
- key: features.multi_column
t: CSS Multi-Column
- key: features.writing_modes
t: CSS Writing Modes
- key: features.exclusions
t: CSS Exclusions
- key: features.flexbox_gap
t: "`gap` property for flexbox"
# shapes & graphics
- key: features.shapes
t: CSS Shapes
- key: features.masks
t: CSS Masks
- key: features.blend_modes
t: Blend Modes
- key: features.filter_effects
t: CSS Filter Effects
- key: features.intrinsic_sizing
t: Intrinsic Sizing
# typography
- key: features.web_fonts
t: Web Fonts (`@font-face`)
- key: features.variable_fonts
t: Variable Fonts
- key: features.line_breaking
t: Line-Breaking Properties
- key: features.direction.description
t: Also includes `dir` HTML attribute.
# animations & transforms
- key: features.transitions
t: CSS Transitions
- key: features.transforms
t: CSS Transforms
- key: features.animations
t: CSS Animations
# media queries/accessibility
- key: features.tabindex
t: "`tabindex` HTML attribute"
- key: features.aria_attributes
t: ARIA HTML Attributes
- key: features.aria_attributes.description
t: "`role`, `aria-label`, etc."
# other features
- key: features.variables
t: CSS Variables (Custom Properties)
- key: features.containment
t: CSS Containment
- key: features.comparison_functions
t: CSS Comparison Functions
- key: features.css_nesting.description
t: Native CSS nesting, excluding pre- or post-processors.
# missing features (see also options)
- key: features.nesting
t: Nesting
- key: features.nesting.description
t: Being able to nest styles in native CSS.
- key: features.parent_selector
t: Parent Selector
- key: features.parent_selector.description
t: The ability to target a parent element based on its children.
- key: features.browser_support
t: Browser Support
- key: features.browser_support.description
t: Better browser support for existing features.
- key: features.mixins
t: Mixins
- key: features.mixins.description
t: Group and reuse definitions dynamically.
- key: features.color_functions
t: Color Functions
- key: features.color_functions.description
t: Functions for manipulating color values.
- key: features.container_queries
t: Container Queries
- key: features.container_queries.description
t: Being able to write styles based on the parent container's dimensions.
- key: features.scoping
t: Scoping
- key: features.scoping.description
t: The ability to be more specific about where your styles are applied.
- key: features.subgrid
t: Subgrid
- key: features.subgrid.description
t: Nesting deeper-level subgrids into a parent grid.
###########################################################################
# Units & Selectors
###########################################################################
- key: features_others.units
t: Units
- key: features_others.units.description
t: Which of these CSS units have you used?
- key: options.units.px
t: px
- key: options.units.pt
t: pt
- key: options.units.percent
t: '%'
- key: options.units.em
t: em
- key: options.units.rem
t: rem
- key: options.units.vh_vw
t: vh, vw
- key: options.units.vmin_vmax
t: vmin, vmax
- key: options.units.ch
t: ch
- key: options.units.ex
t: ex
- key: options.units.mm
t: mm
- key: options.units.cm
t: cm
- key: options.units.in
t: in
- key: features_others.pseudo_elements
t: Pseudo Elements
- key: features_others.pseudo_elements.description
t: Which of these CSS pseudo-elements have you used?
- key: options.pseudo_elements.before
t: '::before'
- key: options.pseudo_elements.after
t: '::after'
- key: options.pseudo_elements.first_line
t: '::first-line'
- key: options.pseudo_elements.first_letter
t: '::first-letter'
- key: options.pseudo_elements.selection
t: '::selection'
- key: options.pseudo_elements.placeholder
t: '::placeholder'
- key: options.pseudo_elements.marker
t: '::marker'
- key: options.pseudo_elements.backdrop
t: '::backdrop'
- key: features_others.combinators
t: Combinators
- key: features_others.combinators.description
t: Which of these combinations CSS selectors have you used?
- key: options.combinators.descendant
t: div span (descendant)
- key: options.combinators.child
t: div > span (child)
- key: options.combinators.next_sibling
t: div + div (next sibling)
- key: options.combinators.subsequent_sibling
t: div ~ div (subsequent sibling)
- key: features_others.tree_document_structure
t: Tree / Document Structure
- key: features_others.tree_document_structure.description
t: Which of these structure related CSS selectors have you used?
- key: options.tree_document_structure.root
t: :root
- key: options.tree_document_structure.empty
t: :empty
- key: options.tree_document_structure.not
t: :not()
- key: options.tree_document_structure.nth_child
t: :nth-child()
- key: options.tree_document_structure.nth_last_child
t: :nth-last-child()
- key: options.tree_document_structure.first_child
t: :first-child
- key: options.tree_document_structure.last_child
t: :last-child
- key: options.tree_document_structure.only_child
t: :only-child
- key: options.tree_document_structure.nth_of_type
t: :nth-of-type()
- key: options.tree_document_structure.nth_last_of_type
t: :nth-last-of-type()
- key: options.tree_document_structure.first_of_type
t: :first-of-type
- key: options.tree_document_structure.last_of_type
t: :last-of-type
- key: options.tree_document_structure.only_of_type
t: :only-of-type
- key: options.tree_document_structure.lang
t: :lang()
- key: options.tree_document_structure.is
t: :is()
- key: options.tree_document_structure.where
t: :where()
- key: options.tree_document_structure.has
t: :has()
- key: features_others.attributes
t: Attributes
- key: features_others.attributes.description
t: Which of these CSS attributes selectors have you used?
- key: options.attributes.presence
t: div[foo] (Presence)
- key: options.attributes.equality
t: div[foo="bar"] (Equality)
- key: options.attributes.starts_with
t: div[foo^="bar"] (Starts with)
- key: options.attributes.ends_with
t: div[foo$="bar"] (Ends with)
- key: options.attributes.contains_word
t: div[foo~="bar"] (Contains word)
- key: options.attributes.contains_substring
t: div[foo*="bar"] (Contains substring)
- key: features_others.links_urls
t: Links/URLs
- key: features_others.links_urls.description
t: Which of these links & URLs related CSS selectors have you used?
- key: options.links_urls.any_link
t: :any-link
- key: options.links_urls.link_visited
t: :link and :visited
- key: options.links_urls.local_link
t: :local-link
- key: options.links_urls.target
t: :target
- key: features_others.interaction
t: Interaction
- key: features_others.interaction.description
t: Which of these interaction CSS selectors have you used?
- key: options.interaction.hover
t: :hover
- key: options.interaction.active
t: :active
- key: options.interaction.focus
t: :focus
- key: options.interaction.focus_within
t: :focus-within
- key: options.interaction.focus_visible
t: :focus-visible
- key: features_others.form_controls
t: Form Controls
- key: features_others.form_controls.description
t: Which of these form related CSS selectors have you used?
- key: options.form_controls.enabled_disabled
t: :enabled and :disabled
- key: options.form_controls.read_only_write
t: :read-only and :read-write
- key: options.form_controls.placeholder_shown
t: :placeholder-shown
- key: options.form_controls.default
t: :default
- key: options.form_controls.checked
t: :checked
- key: options.form_controls.indeterminate
t: :indeterminate
- key: options.form_controls.valid_invalid
t: :valid and :invalid
- key: options.form_controls.user_invalid
t: :user-invalid
- key: options.form_controls.in_out_range
t: :in-range and :out-of-range
- key: options.form_controls.required_optional
t: :required and :optional
# slider
- key: options.css_js_balance.0
t: 100% CSS
- key: options.css_js_balance.1
t: "|"
- key: options.css_js_balance.2
t: "|"
- key: options.css_js_balance.3
t: "|"
- key: options.css_js_balance.4
t: ">50% CSS"
- key: options.css_js_balance.5
t: "|"
- key: options.css_js_balance.6
t: "|"
- key: options.css_js_balance.7
t: "|"
- key: options.css_js_balance.8
t: 100% JS
###########################################################################
# Environments
###########################################################################
- key: environments.browsers
t: Browsers
- key: environments.browsers.description
t: Which browsers do you test in?
- key: environments.form_factors
t: Testing Environments
- key: environments.form_factors.description
t: Which form factors or environments do you test on?
- key: environments.form_factors.others
t: Other Testing Environments
- key: environments.form_factors.others.description
t: Other form factors or environments you usually test on.
- key: environments.accessibility_features
t: Accessibility Features
- key: environments.accessibility_features.description
t: Which accessibility features do you usually implement?
- key: environments.accessibility_features.others
t: Other Accessibility Features
- key: environments.accessibility_features.others.description
t: Other accessibility features you usually implement
- key: environments.css_for_print
t: CSS for Print
- key: environments.css_for_print.description
t: Do you write print styles?
- key: environments.css_for_email
t: CSS for Email Clients
- key: environments.css_for_email.description
t: Do you write CSS for email clients?
- key: environments.what_do_you_use_css_for
t: What do you mainly use CSS for?
- key: environments.what_do_you_use_css_for.description
t: What kind of project do you usually use CSS for?
- key: environments.what_do_you_use_css_for.others
t: Other kinds of projects
- key: charts.axis_legends.css_for_print
t: Frequency
- key: charts.axis_legends.css_for_email
t: Frequency
- key: tools_others.tool_evaluation
t: Library Evaluation
- key: tools_others.tool_evaluation.description
t: For each matchup, pick the factor you prioritize when evaluating a new library.
###########################################################################
# Opinions
###########################################################################
- key: opinions.css_easy_to_learn
t: CSS is easy to learn
- key: opinions.css_easy_to_learn.title
t: Learning Curve
- key: opinions.css_evolving_slowly
t: CSS is evolving too slowly
- key: opinions.css_evolving_slowly.title
t: Rate of Change
- key: opinions.utility_classes_to_be_avoided
t: Utility (non-semantic) classes (.center, .large-text, etc.) should be avoided
- key: opinions.utility_classes_to_be_avoided.title
t: Non-Semantic Classes
- key: opinions.selector_nesting_to_be_avoided
t: Selector nesting (.foo .bar ul li {...}) should be avoided
- key: opinions.selector_nesting_to_be_avoided.title
t: Selector Nesting
- key: opinions.css_is_programming_language
t: CSS is a programming language
- key: opinions.css_is_programming_language.title
t: Programming Language
- key: opinions.enjoy_writing_css
t: I enjoy writing CSS
- key: opinions.enjoy_writing_css.title
t: Enjoyment
# Browser interoperability question
- key: opinions_others.browser_interoperability_features.others
t: Browser Incompatibilities
- key: opinions_others.browser_interoperability_features.others.description
t: >
Are there any existing CSS features that you have difficulties using (or avoid altogether)
because of lack of support, or differences between browsers?
- key: usage.interoperability_features_freeform
aliasFor: opinions_others.browser_interoperability_features.others
- key: usage.interoperability_features_freeform.others
aliasFor: opinions_others.browser_interoperability_features.others
- key: usage.interoperability_features_freeform.description
aliasFor: opinions_others.browser_interoperability_features.others.description
- key: usage.interoperability_features_freeform.others.description
aliasFor: opinions_others.browser_interoperability_features.others.description
# Pain Points
- key: opinions.css_pain_points
t: CSS Pain Points
- key: opinions.css_pain_points.description
t: For each matchup, pick the aspect of CSS you struggle with the most.
- key: usage.other_pain_points_freeform
t: Pain Points
- key: usage.other_pain_points_freeform.description
t: Any other pain points related to writing CSS?
- key: usage.other_pain_points_freeform.others
aliasFor: usage.other_pain_points_freeform
- key: opinions_others.css_pain_points.others
t: Other CSS Pain Points
# Missing Features
- key: opinions.currently_missing_from_css
t: What do you feel is currently missing from CSS?
- key: opinions.currently_missing_from_css.description
t: For each matchup, pick the feature you'd most like to be able to use in CSS today.
- key: usage.missing_features_freeform
t: Missing Features
- key: usage.missing_features_freeform.description
t: What features do you feel are currently missing from CSS altogether?
- key: usage.missing_features_freeform.others
aliasFor: usage.missing_features_freeform
- key: opinions_others.currently_missing_from_css.others
t: Other Missing Features
# - key: opinions_others.currently_missing_from_css.others.note
# t: >
# These results were normalized based on the contents of a freeform field.
# To view the raw, unprocessed responses check out [whatsmissingfromcss.com](http://whatsmissingfromcss.com/).
- key: opinions.sum_up_one_word_css
t: CSS in one word
- key: opinions.sum_up_one_word_css.description
t: How would you sum up your opinion of CSS in one word?
- key: happiness.pre_post_processors
t: How happy are you with the state of pre/post-processors?
- key: happiness.css_in_js
t: How happy are you with the state of CSS-in-JS libraries?
- key: happiness.css_frameworks
t: How happy are you with the state of CSS frameworks?
- key: happiness.state_of_the_web
t: How happy are you with the general state of web technologies?
- key: happiness.state_of_css
t: How happy are you with the general state of CSS?
# pain points/currently missing (results)
- key: css_pain_points.css_pain_points_wins
t: CSS Pain Points
- key: css_pain_points.css_pain_points_wins.description
t: Which aspect of CSS do you struggle with the most? Results are ranked by number of tournament rounds won.
- key: css_pain_points.css_pain_points_matchups
t: CSS Pain Points (Matchups)
- key: css_pain_points.css_pain_points_matchups.description
t: Which aspect of CSS do you struggle with the most? Percentage of rounds won by left-hand item against top-side item.
- key: currently_missing_from_css.currently_missing_from_css_wins
t: Features Missing From CSS
- key: currently_missing_from_css.currently_missing_from_css_wins.description
t: Which feature would you most like to be able to use in CSS today? Results are ranked by number of tournament rounds won.
- key: currently_missing_from_css.currently_missing_from_css_matchups
t: Features Missing From CSS (Matchups)
- key: currently_missing_from_css.currently_missing_from_css_matchups.description
t: Which feature would you most like to be able to use in CSS today? Percentage of rounds won by left-hand item against top-side item.
- key: usage.css_js_balance
t: CSS vs JavaScript Balance
- key: usage.css_js_balance.description
t: How do you divide your time between writing CSS (including HTML markup) and JavaScript code?
###########################################################################
# Resources
###########################################################################
- key: resources.first_steps_css
t: First Steps With CSS
- key: resources.first_steps_css.description
t: When first starting out, how did you initially learn CSS?
# sites & courses
- key: resources.sites_courses_css
aliasFor: resources.sites_courses
- key: resources.sites_courses_css.description
t: Which CSS-related sites/courses/etc. do you use to learn about CSS?
# podcasts
- key: resources.podcasts_css
aliasFor: resources.podcasts
- key: resources.podcasts_css.description
t: Which CSS-related podcasts do you listen to?
# people
- key: resources.people_css.others
aliasFor: resources.people.others
- key: resources.people_css.others.description
t: People you read, follow, or just want to highlight for their work in the CSS ecosystem.
###########################################################################
# Survey Help
###########################################################################
- key: features.features_intro_css
t: |
Welcome to the survey! This first part is all about figuring out
which **features** of CSS you know about.
By the way, if you want to tell us more about any of your choices, just click that little "comment" icon!
- key: tools.tools_intro_css
t: |
The next couple sections focus on the **libraries** and **frameworks** that make up
the CSS ecosystem. Let us know what you're excited about!