-
Notifications
You must be signed in to change notification settings - Fork 5
/
state_of_css.yml
1217 lines (1049 loc) · 52.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
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
locale: ua-UA
namespace: css
translations:
###########################################################################
# General
###########################################################################
- key: general.state_of_css.intro
t: |
CSS розвивається швидше ніж будь-коли.
Гнучкі, сіткові, багатоколонкові макети… Не кажучи вже про цілковито нові парадигми, як-ось CSS-in-JS.
Після успішного проведення щорічного опитування "Стан JavaScript" ми вирішили увійти у світ стилів і селекторів. Ми сподіваємося з вашою допомогою визначити актуальні тенденції, а також з'ясувати, що слід вивчати і використовувати в майбутньому!
- key: general.state_of_css.description
t: Щорічне опитування розробників про останні тенденції в CSS
###########################################################################
# Sections
###########################################################################
- key: sections.layout.title
t: Компонування
- key: sections.layout.description
t: Як ви розміщуєте елементи на екрані?
- key: sections.shapes_graphics.title
t: Форма та графіка
- key: sections.shapes_graphics.description
t: Управління формою і відображенням елементів.
- key: sections.interactions.title
t: Взаємодія
- key: sections.interactions.description
t: Контроль взаємодії користувача зі сторінкою.
- key: sections.typography.title
t: Типографія
- key: sections.typography.description
t: Параметри та компонування тексту.
- key: sections.animations_transforms.title
t: Анімація та перетворення
- key: sections.animations_transforms.description
t: Анімування та перетворення елементів.
- key: sections.accessibility.title
t: Доступність
- key: sections.accessibility.description
t: Функції і техніки доступності.
- key: sections.media_queries.title
t: Медіазапити
- key: sections.media_queries.description
t: Способи адаптації сайту до пристрою користувача або його налаштувань.
- key: sections.selectors.title
t: Селектори
- key: sections.selectors.description
t: Селектори CSS.
- key: sections.colors.title
t: Кольори
- key: sections.colors.description
t: Функції, пов'язані з кольором.
- key: sections.javascript_apis.title
t: API у JavaScript
- key: sections.javascript_apis.description
t: API у JavaScript для маніпуляцій із чи доповнення CSS.
- key: sections.other_features.title
t: Інші функції
- key: sections.other_features.description
t: Інші функції CSS.
- key: sections.math_features.title
t: Математика
- key: sections.math_features.description
t: Математичні функції.
- key: sections.units_selectors.title
t: Одиниці виміру та селектори
- key: sections.units_selectors.description
t: Перевірте свої знання одиниць виміру і селекторів CSS.
- key: sections.pre_post_processors.title
t: Пре-/постпроцесори
- key: sections.pre_post_processors.description
t: Допоміжні програми для розширення чи доповнення CSS.
- key: sections.pre_post_processors_others.title
t: Інші пре-/постпроцесори
- key: sections.css_frameworks.title
t: Фреймворки CSS
- key: sections.css_frameworks.description
t: Фреймворки та бібліотеки з заготованими компонентами чи стилями.
- key: sections.css_frameworks_others.title
t: Інші фреймворки CSS
- key: sections.css_methodologies.title
t: Методології CSS
- key: sections.css_methodologies.description
t: Систематизовані способи написання зрозумілішого CSS-коду.
- key: sections.css_methodologies_others.title
t: Інші методології CSS.
- key: sections.css_in_js.title
t: CSS-in-JS
- key: sections.css_in_js.description
t: Бібліотеки для написання CSS у JavaScript-коді.
- key: sections.css_in_js_others.title
t: Інші бібліотеки для CSS-in-JS.
- key: sections.tools_others.title
t: Інші інструменти
- key: sections.tools_others.description
t: Інші інструменти CSS.
- key: sections.environments.title
t: Середовище
- key: sections.environments.description
t: Які проблеми середовища і доступності ви враховуєте під час написання CSS?
- key: sections.usage_css.title
t: Використання CSS
- key: sections.usage_css.description
t: Як ви використовуєте CSS.
- key: sections.resources_css.title
t: Джерела
- key: sections.resources_css.description
t: До яких джерел щодо СSS ви звертаєтеся?
###########################################################################
# Options
###########################################################################
# CSS for print
- key: options.css_for_print.0
t: (Майже) ніколи не додаю стилі для друку
- key: options.css_for_print.0.short
t: Ніколи
- key: options.css_for_print.1
t: Іноді додаю стилі для друку
- key: options.css_for_print.1.short
t: Іноді
- key: options.css_for_print.2
t: У більшості проєктів додаю стилі для друку
- key: options.css_for_print.2.short
t: Часто
- key: options.css_for_print.3
t: Насамперед додаю CSS для друку
- key: options.css_for_print.3.short
t: Переважно
# CSS for email
- key: options.css_for_email.0
t: (Майже) ніколи не додаю CSS для поштових клієнтів
- key: options.css_for_email.0.short
t: Ніколи
- key: options.css_for_email.1
t: Іноді додаю CSS для поштових клієнтів
- key: options.css_for_email.1.short
t: Іноді
- key: options.css_for_email.2
t: У більшості проєктів додаю CSS для поштових клієнтів
- key: options.css_for_email.2.short
t: Часто
- key: options.css_for_email.3
t: Насамперед додаю CSS для поштових клієнтів
- key: options.css_for_email.3.short
t: Переважно
# what do you use CSS for?
- key: options.what_do_you_use_css_for.marketing_sites
t: Сайти для продажу та сторінки-вітрини
- key: options.what_do_you_use_css_for.design_systems
t: Дизайн-системи
- key: options.what_do_you_use_css_for.blogs
t: Блоги чи інші сайти з великою кількістю тексту
- key: options.what_do_you_use_css_for.web_apps
t: Вебзастосунки
- key: options.what_do_you_use_css_for.mobile_apps
t: Застосунки для мобільних пристроїв
- key: options.what_do_you_use_css_for.css_art
t: Творчість та ілюстрації в CSS
- key: options.what_do_you_use_css_for.emails
t: Електронні листи
- key: options.what_do_you_use_css_for.printed_documents
t: Документи для друку
- key: options.what_do_you_use_css_for.desktop_apps
t: Застосунки для настільних комп'ютерів
- key: options.what_do_you_use_css_for.e_commerce
t: Електронна комерція
- key: options.what_do_you_use_css_for.websites
t: Вебсайти
- key: options.what_do_you_use_css_for.games
t: Ігри
- key: options.what_do_you_use_css_for.portfolio
t: Портфоліо
- key: options.what_do_you_use_css_for.extensions
t: Розширення браузера
- key: options.what_do_you_use_css_for.desktop
t: Настільні комп'ютери
# CSS pain points
- key: options.css_pain_points.browser_interoperability
t: Сумісність між браузерами
- key: options.css_pain_points.browser_interoperability.description
t: Різниця між Chrome, Safari, Firefox тощо.
- key: options.css_pain_points.interactions
t: Взаємодія
- key: options.css_pain_points.interactions.description
t: Відповідь на введення або інші події (гортання, наведення тощо), викликані користувачем.
- key: options.css_pain_points.architecture
t: Архітектура та підтримування
- key: options.css_pain_points.architecture.description
t: Організування файлів, видалення невикористаного коду, рефакторинг тощо.
- key: options.css_pain_points.layout_positioning
t: Компонування та позиціонування
- key: options.css_pain_points.layout_positioning.description
t: Компонування та розміщення елементів у бажаному місці.
- key: options.css_pain_points.scoping_specificity
t: Область видимості та специфічність
- key: options.css_pain_points.scoping_specificity.description
t: Робота з каскадом, перевизначенням стилів тощо.
- key: options.css_pain_points.responsive_design
t: Чуйний (responsive) дизайн
- key: options.css_pain_points.responsive_design.description
t: Зміна компонування елементів і дизайнів відповідно до формфактору пристрою.
- key: options.css_pain_points.form_elements_styling
t: Стилі для елементів форми
- key: options.css_pain_points.form_elements_styling.description
t: Налаштування вигляду та поведінки елементів форми.
- key: options.css_pain_points.performance_issues
t: Проблеми продуктивності
- key: options.css_pain_points.performance_issues.description
t: Робота з ненадійним гортанням, створення більш плавних анімацій тощо.
- key: options.css_pain_points.accessibility
t: Доступність
- key: options.css_pain_points.accessibility.description
t: Забезпечення доступності вмісту
- key: options.css_pain_points.animations
t: Анімація
- key: options.css_pain_points.animations.description
t: Створення анімацій та переходів
# CSS missing features (same as features section)
- key: options.css_missing_features.nesting
t: Вкладеність
- key: options.css_missing_features.nesting.description
t: Змога вкладати стилі один в одного в нативному CSS-коді.
- key: options.css_missing_features.parent_selector
t: Селектор батьківського елемента
- key: options.css_missing_features.parent_selector.description
t: Змога вибирати батьківський елемент за його безпосереднім нащадком.
- key: options.css_missing_features.browser_support
t: Підтримання браузерами
- key: options.css_missing_features.browser_support.description
t: Краще підтримування браузерами наявних функцій.
- key: options.css_missing_features.mixins
t: Домішки (mixins)
- key: options.css_missing_features.mixins.description
t: Динамічне групування та перевикористання визначень.
- key: options.css_missing_features.color_functions
aliasFor: features.color_functions
- key: options.css_missing_features.color_functions.description
aliasFor: features.color_functions.description
- key: options.css_missing_features.container_queries
t: Контейнерні запити
- key: options.css_missing_features.container_queries.description
t: Змога писати стилі, зважаючи на розміри батьківського контейнера.
- key: options.css_missing_features.scoping
t: Область видимості
- key: options.css_missing_features.scoping.description
t: Змога уточнювати місце застосування ваших стилів.
- key: options.css_missing_features.subgrid
t: Вкладена сітка (Subgrid)
- key: options.css_missing_features.subgrid.description
t: Вкладення сіток нижчого рівня у батьківську сітку.
- key: options.css_missing_features.native_visually_hidden
t: Візуально прихований вміст
- key: options.css_missing_features.native_visually_hidden.description
t: Вбудоване підтримання візуально прихованого вмісту.
- key: options.css_missing_features.generated_content_alt_text
t: Alt-текст для згенерованого контенту
- key: options.css_missing_features.generated_content_alt_text.description
t: Додавання альтернативного тексту до згенерованого (`::before`, `::after`) контенту.
- key: options.css_missing_features.animate_to_auto
t: Анімування зі значенням `auto`
- key: options.css_missing_features.animate_to_auto.description
t: Анімування розмірів елемента зі значенням `auto`.
- key: options.css_missing_features.anchored_positioning
t: Якірне позиціонування
- key: options.css_missing_features.anchored_positioning.description
t: Позиціонування елементів відносно країв іншого довільного елемента.
- key: options.css_missing_features.wrapping_detection
t: Виявлення перенесення елемента
- key: options.css_missing_features.wrapping_detection.description
t: Виявлення того, що гнучкий або сітковий елемент був перенесений (wrapped) на наступну лінію.
- key: options.css_missing_features.more_pseudo_elements
t: Більше псевдоелементів
- key: options.css_missing_features.more_pseudo_elements.description
t: Більше ніж два псевдоелемента на елемент.
- key: options.css_missing_features.svg_in_css
t: SVG-in-CSS
- key: options.css_missing_features.svg_in_css.description
t: Підтримування синтаксису SVG всередині CSS-коду (наприклад, `background`).
- key: options.css_missing_features.grid_lines_styling
t: Стилі для ліній-розділювачів сітки
- key: options.css_missing_features.grid_lines_styling.description
t: Можливість додавання стилів для невидимих ліній, які розділяють сітку.
- key: options.css_missing_features.media_queries_variables
t: Змінні в медіазапитах
- key: options.css_missing_features.media_queries_variables.description
t: Можливість використання змінних всередині медіазапитів.
- key: options.css_missing_features.masonry_layout
t: Компонування masonry
- key: options.css_missing_features.masonry_layout.description
t: Вбудоване підтримання сітки вільного плину для компонування у стилі Pinterest.
- key: options.css_missing_features.css_toggle
t: Перемикач (Toggle) у CSS
- key: options.css_missing_features.css_toggle.description
t: Спосіб зіставлення "значення, що може перемикатися", з елементом.
###########################################################################
# Features
###########################################################################
# layout
- key: features.regions
t: Регіони в CSS (CSS Regions)
- key: features.multi_column
t: Багатоколонковість у CSS
- key: features.writing_modes
t: Напрямки письма в CSS
- key: features.exclusions
t: Області обтікання в CSS (CSS Exclusions)
- key: features.flexbox_gap
t: "Властивість `gap` для флексбоксу"
- key: features.viewport_percentage_length_units
t: Одиниці вимірювання на основі малої, великої та динамічної області перегляду
- key: features.viewport_percentage_length_units.question
aliasFor: features.viewport_percentage_length_units
- key: features.at_container
t: "Запити `@container`"
- key: features.at_container.description
t: Включно з вибором за розмірами та стилями
# shapes & graphics
- key: features.shapes
t: Фігури та форми в CSS
- key: features.masks
t: Маскування CSS
- key: features.filter_effects
t: Ефекти фільтрів CSS
- key: features.linear_easing_function
t: "Функція плавності `linear()`"
- key: features.linear_easing_function.question
aliasFor: features.linear_easing_function
- key: features.blend_modes
t: Режими накладання та змішування
- key: features.blend_modes.question
aliasFor: features.blend_modes
- key: features.intrinsic_sizing
t: Ключові слова для природного розміру (intrinsic sizing)
- key: features.gradient_color_spaces
t: Простори колірної інтерполяції
- key: features.gradient_color_spaces.question
aliasFor: features.gradient_color_spaces
# typography
- key: features.web_fonts
t: Шрифти у вебі (`@font-face`)
- key: features.variable_fonts
t: Варіативні шрифти
- key: features.line_breaking
t: Властивості перенесення тексту
- key: features.direction.description
t: Включно з HTML-атрибутом `dir`.
# animations & transforms
- key: features.transitions
t: Переходи CSS
- key: features.transforms
t: Перетворення CSS
- key: features.animations
t: Анімації CSS
- key: features.discrete_properties_animations
t: Анімування дискретних властивостей
- key: features.discrete_properties_animations.description
t: Просте анімування входу та виходу для елементів, які можна закрити, наприклад, діалогових і спливних вікон.
# media queries/accessibility
- key: features.tabindex
t: "Атрибут HTML `tabindex`"
- key: features.aria_attributes
t: ARIA-атрибути HTML
- key: features.aria_attributes.description
t: "`role`, `aria-label` тощо"
# other features
- key: features.variables
t: Змінні CSS (Власні властивості)
- key: features.containment
t: Утримання CSS (CSS Containment)
- key: features.css_nesting.description
t: Вбудована вкладеність CSS без пре-/постпроцесорів.
- key: features.trigonometric_functions
t: Тригонометричні функції
- key: features.trigonometric_functions.question
aliasFor: features.trigonometric_functions
- key: features.exponential_functions
t: Експоненційні функції
- key: features.sign_related_functions
t: Функції для роботи зі знаком
- key: features.stepped_value_functions
t: Кусково-задані функції
- key: features.css_nesting
t: Вкладеність CSS
- key: features.shadow_dom_css
t: Функції Shadow DOM
- key: features.individual_transform_properties
t: Окремі властивості перетворення
- key: features.individual_transform_properties.question
aliasFor: features.individual_transform_properties
- key: features.comparison_functions
t: Функції порівняння в CSS
- key: features.comparison_functions.question
aliasFor: features.comparison_functions
- key: features.math_functions
t: Математичні функції в CSS
- key: features.viewport_units
t: Одиниці на основі області перегляду (`vh`, `vw`)
- key: features.cascade_layers
t: Каскадні шари
- key: features.cascade_layers.question
aliasFor: features.cascade_layers
# missing features (see also options)
- key: features.nesting
t: Вкладеність
- key: features.nesting.description
t: Змога вкладати стилі один в одного в нативному CSS-коді.
- key: features.parent_selector
t: Селектор батьківського елемента
- key: features.parent_selector.description
t: Змога вибирати батьківський елемент за його безпосереднім нащадком.
- key: features.browser_support
t: Підтримання браузерами
- key: features.browser_support.description
t: Краще підтримування браузерами наявних функцій.
- key: features.mixins
t: Домішки (mixins)
- key: features.mixins.description
t: Динамічне групування та перевикористання визначень.
- key: features.color_functions
t: Функції кольору
- key: features.color_functions.description
t: Функції для маніпулювання значеннями кольорів (`color()`, `color-mix()`, `contrast-color()` тощо).
- key: features.container_queries
t: Контейнерні запити
- key: features.container_queries.description
t: Змога писати стилі, зважаючи на розміри батьківського контейнера.
- key: features.scoping
t: Область видимості
- key: features.scoping.description
t: Змога уточнювати місце застосування ваших стилів.
###########################################################################
# Units & Selectors
###########################################################################
- key: features_others.units
t: Одиниці вимірювання
- key: features_others.units.description
t: Які з-поміж цих одиниць вимірювання в CSS ви використовували?
- 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: Псевдоелементи
- key: features_others.pseudo_elements.description
t: Які з-поміж цих псевдоелементів CSS ви використовували?
- 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: Комбінатори
- key: features_others.combinators.description
t: Які з-поміж цих комбінаторів селекторів CSS ви використовували?
- key: options.combinators.descendant
t: div span (нащадок)
- key: options.combinators.child
t: div > span (безпосередній нащадок)
- key: options.combinators.next_sibling
t: div + div (наступний сестринський елемент)
- key: options.combinators.subsequent_sibling
t: div ~ div (усі сестринські елементи опісля)
- key: features_others.tree_document_structure
t: Структура дерева / документа
- key: features_others.tree_document_structure.description
t: Які з-поміж цих CSS-селекторів, пов'язаних зі структурою, ви використовували?
- 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: Атрибути
- key: features_others.attributes.description
t: Які з-поміж цих CSS-селекторів атрибутів ви використовували?
- key: options.attributes.presence
t: div[foo] (Має заданий атрибут)
- key: options.attributes.equality
t: div[foo="bar"] (Те саме значення)
- key: options.attributes.starts_with
t: div[foo^="bar"] (Починається з чого)
- key: options.attributes.ends_with
t: div[foo$="bar"] (Закінчується чим)
- key: options.attributes.contains_word
t: div[foo~="bar"] (Містить слово)
- key: options.attributes.contains_substring
t: div[foo*="bar"] (Містить текст)
- key: features_others.links_urls
t: Посилання/URL
- key: features_others.links_urls.description
t: Які з-поміж цих CSS-селекторів, пов'язаних із посиланнями та URL, ви використовували?
- key: options.links_urls.any_link
t: :any-link
- key: options.links_urls.link_visited
t: :link та :visited
- key: options.links_urls.local_link
t: :local-link
- key: options.links_urls.target
t: :target
- key: features_others.interaction
t: Взаємодія
- key: features_others.interaction.description
t: Які з-поміж цих CSS-селекторів взаємодії ви використовували?
- 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: Елементи керування формою
- key: features_others.form_controls.description
t: Які з-поміж цих CSS-селекторів, пов'язаних із формами, ви використовували?
- key: options.form_controls.enabled_disabled
t: :enabled та :disabled
- key: options.form_controls.read_only_write
t: :read-only та :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 та :invalid
- key: options.form_controls.user_invalid
t: :user-invalid
- key: options.form_controls.in_out_range
t: :in-range та :out-of-range
- key: options.form_controls.required_optional
t: :required та :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%–50%
- 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
###########################################################################
# Other Tools
###########################################################################
- key: tools.css_frameworks
t: Фреймворки CSS
- key: tools.css_frameworks.question
t: Які фреймворки CSS ви використовуєте?
- key: tools.css_frameworks.prompt
t: Фреймворки або бібліотеки з заготованими компонентами чи стилями.
- key: tools.css_in_js
t: CSS-in-JS
- key: tools.css_in_js.question
t: Які бібліотеки CSS-in-JS ви використовуєте?
- key: tools_others.pre_post_processors
aliasFor: sections.pre_post_processors.title
- key: other_tools.pre_post_processors
aliasFor: sections.pre_post_processors.title
- key: tools_others.pre_post_processors.question
t: Які пре-/постпроцесори ви регулярно використовуєте?
- key: other_tools.pre_post_processors.description
aliasFor: tools_others.pre_post_processors.question
- key: tools_others.pre_post_processors.others
aliasFor: sections.pre_post_processors_others.title
- key: other_tools.pre_post_processors.others
aliasFor: sections.pre_post_processors_others.title
- key: other_tools.pre_post_processors_freeform
aliasFor: sections.pre_post_processors_others.title
- key: options.pre_post_processors.na
t: Нічого
- key: tools.pre_post_processors
aliasFor: sections.pre_post_processors.title
- key: tools.pre_post_processors.question
aliasFor: tools_others.pre_post_processors.question
- key: tools_others.utilities
t: Інструменти
- key: tools_others.utilities.question
t: Які допоміжні програми чи інструменти ви часто використовуєте?
- key: tools_others.utilities.others
t: Інші інструменти
- key: tools_others.utilities.others.description
t: Інше (поле відповіді довільної форми).
- key: options.utilities.na
t: Нічого
- key: tools.utilities
aliasFor: tools_others.utilities
- key: tools.utilities.question
aliasFor: tools_others.utilities.question
- key: other_tools.utilities
aliasFor: tools_others.utilities
- key: other_tools.utilities.description
aliasFor: tools_others.utilities.question
- key: other_tools.utilities.others
aliasFor: tools_others.utilities.others
- key: other_tools.utilities.others.description
aliasFor: tools_others.utilities.others.description
- key: other_tools.utilities_freeform
aliasFor: tools_others.utilities.others
- key: tools.utilities
aliasFor: tools_others.utilities
- key: tools.utilities.question
aliasFor: tools_others.utilities.question
- key: tools_others.browsers
t: Браузери
- key: tools_others.browsers.question
t: У якому браузері ви переважно працюєте під час початку розробки?
- key: tools_others.browsers.others
t: Інші браузери
- key: tools_others.browsers.others.description
t: Інше (поле відповіді довільної форми).
- key: tools.browsers
aliasFor: tools_others.browsers
- key: tools.browsers.question
aliasFor: tools_others.browsers.question
- key: other_tools.browsers
aliasFor: tools_others.browsers
- key: other_tools.browsers.description
aliasFor: tools_others.browsers.question
- key: other_tools.browsers.others
aliasFor: tools_others.browsers.others
- key: other_tools.browsers.others.description
aliasFor: tools_others.browsers.others.description
###########################################################################
# Environments
###########################################################################
- key: environments.browsers
t: Браузери
- key: environments.browsers.description
t: У яких браузерах ви тестуєте
- key: environments.form_factors
t: Середовища тестування
- key: environments.form_factors.question
t: Для яких формфакторів чи у яких середовищах ви тестуєте?
- key: environments.form_factors.others
t: Інші середовища тестування
- key: environments.form_factors.others.description
t: Інші формфактори або середовища, у яких ви тестуєте.
- key: usage.form_factors
aliasFor: environments.form_factors
- key: usage.form_factors.question
aliasFor: environments.form_factors.question
- key: usage.form_factors.others
aliasFor: environments.form_factors.others
- key: usage.form_factors_freeform
aliasFor: environments.form_factors.others
- key: usage.form_factors.others.description
aliasFor: environments.form_factors.others.description
- key: environments.accessibility_features
t: Функції доступності
- key: environments.accessibility_features.question
t: Які функції доступності ви зазвичай реалізовуєте?
- key: environments.accessibility_features.others
t: Інші функції доступності
- key: environments.accessibility_features.others.description
t: Інші функції доступності, які ви зазвичай реалізовуєте
- key: environments.css_for_print
t: CSS для друку
- key: environments.css_for_print.question
t: Ви пишете стилі для режиму друку?
- key: environments.css_for_email
t: CSS для поштових клієнтів
- key: environments.css_for_email.question
t: Ви пишете CSS для поштових клієнтів?
- key: environments.what_do_you_use_css_for
t: Використання CSS
- key: environments.what_do_you_use_css_for.question
t: Для якого виду проєктів ви зазвичай використовуєте CSS?
- key: environments.what_do_you_use_css_for.others
t: Інші види проєктів
- key: usage.what_do_you_use_css_for
aliasFor: environments.what_do_you_use_css_for
- key: usage.what_do_you_use_css_for.question
aliasFor: environments.what_do_you_use_css_for.question
- key: usage.what_do_you_use_css_for
aliasFor: environments.what_do_you_use_css_for
- key: usage.what_do_you_use_css_for.others
aliasFor: environments.what_do_you_use_css_for.others
- key: usage.what_do_you_use_css_for_freeform
aliasFor: environments.what_do_you_use_css_for.others
- key: charts.axis_legends.css_for_print
t: Частотність
- key: charts.axis_legends.css_for_email
t: Частотність
- key: tools_others.tool_evaluation
t: Оцінка бібліотек
- key: tools_others.tool_evaluation.description
t: У кожній парі виберіть пріоритетніший для вас фактор під час оцінювання нової бібліотеки.
###########################################################################
# Opinions
###########################################################################
- key: opinions.css_easy_to_learn
t: Вивчати CSS легко
- key: opinions.css_easy_to_learn.title
t: Крива вивчення
- key: opinions.css_evolving_slowly
t: CSS розвивається надто повільно
- key: opinions.css_evolving_slowly.title
t: Швидкість змін
- key: opinions.utility_classes_to_be_avoided
t: Потрібно уникати допоміжних (несемантичних) класів (.center, .large-text тощо)
- key: opinions.utility_classes_to_be_avoided.title
t: Несемантичні класи
- key: opinions.selector_nesting_to_be_avoided
t: Потрібно уникати вкладеності селекторів (.foo .bar ul li {...})
- key: opinions.selector_nesting_to_be_avoided.title
t: Вкладеність селекторів
- key: opinions.css_is_programming_language
t: CSS — це мова програмування
- key: opinions.css_is_programming_language.title
t: Мова програмування
- key: opinions.enjoy_writing_css
t: Мені подобається писати CSS
- key: opinions.enjoy_writing_css.title
t: Насолода
# Browser interoperability question
- key: opinions_others.browser_interoperability_features.others
t: Несумісність між браузерами
- key: opinions_others.browser_interoperability_features.others.description
t: >
Якими наявними функціями CSS ви не можете користуватися (або взагалі уникаєте)
через відсутність підтримування або відмінності між браузерами?
- key: usage.css_interoperability_features
aliasFor: opinions_others.browser_interoperability_features.others
- key: usage.css_interoperability_features.question
aliasFor: opinions_others.browser_interoperability_features.others.description
- key: usage.css_interoperability_features_freeform
aliasFor: opinions_others.browser_interoperability_features.others
- 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
- key: options.css_interoperability_features.math_functions
aliasFor: features.math_functions
- key: options.css_interoperability_features.css_nesting
aliasFor: features.css_nesting
- key: options.css_interoperability_features.at_container
aliasFor: features.at_container
- key: options.css_interoperability_features.color_functions
aliasFor: features.color_functions
- key: options.css_interoperability_features.color_functions.description
aliasFor: features.color_functions.description
- key: options.css_interoperability_features.cascade_layers
aliasFor: features.cascade_layers
- key: options.css_interoperability_features.scrollbar
t: Стилі для смуги гортання
- key: options.css_interoperability_features.na
t: Нічого
# Pain Points
- key: opinions.css_pain_points
t: Проблеми CSS
- key: opinions.css_pain_points.description
t: У кожній парі виберіть аспект CSS, з яким вам найтяжче працювати.
- key: usage.other_pain_points_freeform
t: Ще якісь проблеми, пов'язані з написанням CSS?
- key: usage.other_pain_points_freeform.others
aliasFor: usage.other_pain_points_freeform
- key: opinions_others.css_pain_points.others
t: Інші проблеми CSS
- key: usage.css_pain_points
aliasFor: opinions_others.css_pain_points.others
- key: usage.css_pain_points.question
aliasFor: usage.other_pain_points_freeform
- key: usage.css_pain_points_freeform
aliasFor: usage.other_pain_points_freeform
- key: options.css_pain_points.na
t: Нічого
# Missing Features
- key: opinions.css_missing_features
t: На вашу думку, чого наразі не вистачає у CSS?
- key: opinions.css_missing_features.description
t: У кожній парі виберіть те, що, за можливості, ви найбільше хотіли б використовувати у CSS сьогодні.
- key: usage.missing_features_freeform
t: На вашу думку, чого наразі взагалі не вистачає у CSS?
- key: usage.missing_features_freeform.others
aliasFor: usage.missing_features_freeform
- key: usage.missing_features_freeform
aliasFor: usage.missing_features_freeform
- key: usage.css_missing_features
t: Відсутні функції
- key: usage.css_missing_features.question
aliasFor: usage.missing_features_freeform
- key: opinions_others.css_missing_features.others
t: Інші відсутні функції