forked from TheOdinProject/css-exercises
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcls
2592 lines (1725 loc) · 83 KB
/
cls
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
[33mcommit bb2f0a38f5c34103bcb7777a4c8ed4321cc7be88[m[33m ([m[1;36mHEAD[m[33m -> [m[1;32mmain[m[33m)[m
Author: mustapha <[email protected]>
Date: Thu Feb 1 11:57:28 2024 +0100
exercises Class and ID Selectors
[33mcommit 67c71c3573b0566e211ab2312ef373e73b441fd0[m[33m ([m[1;31morigin/main[m[33m, [m[1;31morigin/HEAD[m[33m)[m
Author: mustapha <[email protected]>
Date: Wed Jan 31 16:34:56 2024 +0100
the 01 exercice css
[33mcommit c56ddf657a6bc82a2e3e7472732889057fd20d53[m
Merge: d45cea2 4091598
Author: Kevin <[email protected]>
Date: Wed Jan 24 23:24:15 2024 +0000
Merge pull request #470 from Evergard/01
06-cascade-fix: Add a punctation mark
[33mcommit 40915988ad350d82c0c09d696a6e262738d563ba[m
Author: Evergard <[email protected]>
Date: Wed Jan 24 10:54:04 2024 +0800
docs: Add a punctation mark on foundations/06/solution.css
[33mcommit d45cea28541a3ad1b1f8cd0a94368e4abfcfe9b0[m
Merge: 618a932 aba1744
Author: Eric Olkowski <[email protected]>
Date: Sun Jan 21 07:01:19 2024 -0500
Merge pull request #460 from kesava-karri/match_font_with_image
02-flex-header: Match the solution font with the desired image
[33mcommit aba174459af47af8edc044bb088d7c096a0d6008[m
Author: Keshav K <[email protected]>
Date: Sat Jan 20 18:11:25 2024 -0800
02-flex-header: Added a note, letting users know that matching the font isn't desired
[33mcommit b57e48a828dfbf7af48f95e52f2ead44e36273c9[m
Author: Keshav K <[email protected]>
Date: Thu Jan 11 03:51:03 2024 -0800
match the solution font with the desired image
[33mcommit 618a932bcdfaafc943d15f553f3e358c62ed9070[m
Merge: e42aa5c bfe24b2
Author: Eric Olkowski <[email protected]>
Date: Fri Jan 19 13:05:43 2024 -0500
Merge pull request #419 from devinjordan/foundations_css_methods_typos
foundations-01-css-methods: Update README.md
[33mcommit e42aa5ce14842470a9f9d5892b893066cb50bf05[m
Merge: b7c0fd9 fac16db
Author: Eric Olkowski <[email protected]>
Date: Fri Jan 19 13:01:38 2024 -0500
Merge pull request #452 from javicavi/patch-1
Update solution.css
[33mcommit b7c0fd94db250ab8d81d2dfdd3eb0a00df7c1802[m
Merge: 88fabfc a28ec56
Author: Eric Olkowski <[email protected]>
Date: Fri Jan 19 12:48:47 2024 -0500
Merge pull request #463 from MaoShizhong/chore/improve-readme-wording-on-provided-solution
Repo README: Improve wording regarding TOP provided solution
[33mcommit a28ec565f2e1d9938b3f54dff87e02682e279cf2[m
Author: MaoShizhong <[email protected]>
Date: Fri Jan 19 13:26:18 2024 +0000
Update wording and fix layout style guide issues
As per markdown style guide, now uses lazy numbering, dashes for
unordered lists and 3-space indents when nested in an ordered list.
[33mcommit b46538f58e3841b6c359d691078f62e0e8383b63[m
Author: MaoShizhong <[email protected]>
Date: Mon Jan 15 09:04:50 2024 +0000
Improve wording in README regarding TOP provided solution
Same change made in parallel with the javascript-exercises repo to unify
wording.
[33mcommit fac16dbc99f75252690ab54a96e411beb175b0e0[m
Author: javicavi <[email protected]>
Date: Sun Dec 31 16:49:11 2023 +0100
Update solution.css
Adding ; at the end of the body font-family attribute (line 2).
[33mcommit 88fabfc3d70f35dbdfb6c2794e1d5c0a5c586509[m
Merge: e1dbb71 87cdd8d
Author: Austin Sullivan <[email protected]>
Date: Wed Nov 22 11:02:11 2023 -0500
Merge pull request #431 from just-ctrlC-ctrlV/main
Update README.md to clarify instructions and add additional information
[33mcommit 87cdd8d57ee8772c361c838b910bd39cb85111cf[m
Author: Tanmay Shukla <[email protected]>
Date: Tue Oct 31 17:02:09 2023 +0530
Update README.md to clarify instructions and add additional information
Changes Done
* improve clarity and accuracy.
*Remove grammatical errors.
*Removed typos.
[33mcommit e1dbb71bb680cfca15e45814978badf16014614e[m
Merge: d3c5d8c cf0082b
Author: Cody Loyd <[email protected]>
Date: Thu Oct 26 08:28:32 2023 -0500
Merge pull request #422 from jwsoh07/jw-soh/addition-to-css-selectors
05-descendant-combinator: Add css selector option
[33mcommit cf0082bd036e603a0edd11e944a1dc8a91f1fafa[m
Author: Soh Jun Wen <[email protected]>
Date: Thu Oct 26 18:51:04 2023 +1100
Add css selector option to existing list
[33mcommit bfe24b283b952e6cc94ed192efd08b20a9670639[m
Author: devinjordan <[email protected]>
Date: Sat Oct 21 19:20:15 2023 -0400
Edit typo on README.md
[33mcommit d3c5d8c0e4616a15d392dc7b7e28e49ad2362d5d[m
Merge: a9f93b1 f45f9a2
Author: Cody Loyd <[email protected]>
Date: Wed Oct 11 10:14:08 2023 -0500
Merge pull request #385 from bEluga0000/first-contribution
Add eslint to project
[33mcommit f45f9a2019d0d399bfbd1d66f2188c0f7472a02e[m
Author: shreyas20003 <[email protected]>
Date: Thu Sep 28 09:45:04 2023 +0530
Add eslint to project
[33mcommit a9f93b10dfdb1f9392fe8955ddc37f245a30a344[m
Merge: 9ab349e 21e8746
Author: Cody Loyd <[email protected]>
Date: Tue Aug 29 14:45:49 2023 -0500
Merge pull request #367 from dev-ethanjohn/feature/readme-and-html-updates
Feature/readme and html updates
[33mcommit 21e874657913f91c5bbef1cf3d19a0b2dcd9c48a[m
Author: dev-ethanjohn <[email protected]>
Date: Sat Aug 26 08:56:31 2023 -0700
Enhanced template; Added images/folder and fixed img path in solution
[33mcommit ea34148b29614acd3581cd6b03127ec6594806a9[m
Author: dev-ethanjohn <[email protected]>
Date: Sat Aug 26 08:19:52 2023 -0700
Update README: Exercise instructions and image note
[33mcommit 9ab349e7d96a947cdfb52745a86b7fee2e954ec0[m
Merge: 320c164 061fe0a
Author: Cody Loyd <[email protected]>
Date: Mon Aug 14 12:23:19 2023 -0500
Merge pull request #360 from SupraSensum/increase_self_check_clarity
flex: 06-flex-layout: README.md: Improve self check clarity
[33mcommit 061fe0abaacbdf0a3ff66da54bf485f1098a0cfe[m
Author: SupraSensum <[email protected]>
Date: Fri Aug 11 14:20:16 2023 -0300
Replace margin with gap
- This is to keep with the flex spirit
- Another solution might instead be to nest .input and .buttons into
their own container, then apply the gap property to that container.
This solves the visually uneven spacing between <img> and .input
[33mcommit 320c1642b67d0c93e45b190224c666ff84ce4195[m
Merge: 15f62b3 2140eb8
Author: Eric Olkowski <[email protected]>
Date: Sat Jul 29 18:29:21 2023 -0400
Merge pull request #352 from KISHANsingh0001/main
Improvement to enhance its readability
[33mcommit 2140eb849790ac52f1df20aa581f898c68a6fba1[m
Author: kishan singh thakur <[email protected]>
Date: Sat Jul 29 15:15:12 2023 +0530
Improvement to enhance its readability
[33mcommit 15f62b3c02c148c7cba6cf97b37c88e88ee8b760[m
Merge: d2b199b 18b91bc
Author: Manon <[email protected]>
Date: Tue Jul 18 13:59:34 2023 +0200
Merge pull request #348 from ManonLef/main
css-exercise animation 02 - edit syntax
[33mcommit 18b91bc10023337fbe7fa0e29bbe94dd6922501d[m
Author: Manon <[email protected]>
Date: Mon Jul 17 17:41:08 2023 +0200
edit same styling issues in solution file
[33mcommit 2e54850b103fd21bff94d3ae14a30c543d638540[m
Author: Manon <[email protected]>
Date: Mon Jul 17 16:13:22 2023 +0200
edit syntax
[33mcommit d2b199b03660cade65b3a9c801d88c24c5ba1127[m
Merge: 5bfacdc 54712e9
Author: Austin <[email protected]>
Date: Mon Jul 10 21:45:02 2023 +0100
Merge pull request #344 from ssff1293/update_link_in_README.md
04-chaining-selectors : Update link to artist Katho Mutodo profile
[33mcommit 54712e9db497de78a838de01675b4630f47b304e[m
Author: ssff1293 <[email protected]>
Date: Mon Jul 10 09:00:01 2023 -0300
Update link to artist Katho Mutodo profile
[33mcommit 5bfacdc28656ddc4a28409d2dfe918eddea79c06[m
Merge: 1be5215 83b856b
Author: Dylan <[email protected]>
Date: Thu Jul 6 08:02:35 2023 +1000
Merge pull request #339 from Asartea/chore/update-contributing-links
Chore: repoint contributing links to .github/CONTRIBUTING.md
[33mcommit 83b856bf634c7ca16fa414f0dfe8c99b9bd2a191[m
Author: Asartea <[email protected]>
Date: Wed Jul 5 14:52:01 2023 +0200
repoint contributing links to .github/CONTRIBUTING.md
[33mcommit 1be52159e4f5b62e82d38a05ee644b1c48f440cc[m
Merge: a578b25 de3018d
Author: Austin <[email protected]>
Date: Tue Jun 13 09:21:56 2023 +0100
Merge pull request #327 from syjem/fix_image_name_grid_exercise3
correct typo in image name to fix broken link in README.md
[33mcommit de3018d296bd45caf7f1a99b2134fc536fd569d2[m
Author: Jemuel Repoylo <[email protected]>
Date: Tue Jun 13 11:40:26 2023 +0800
correct typo in image name to fix broken link in README.md
[33mcommit a578b252bdb567cb984901ba172982effedeb885[m
Merge: 4eea74d 3c9fe0e
Author: Cody Loyd <[email protected]>
Date: Mon Jun 12 09:15:25 2023 -0500
Merge pull request #326 from christinamakes/text_visibility_updates
css-exercises: color contrast updates for WCAG compliance
[33mcommit 3c9fe0e270f68692155b4e498229938feb564d9e[m
Author: Christina M <[email protected]>
Date: Sat Jun 10 12:31:10 2023 -0500
grid-03: style, solution, desired-outcome
[33mcommit ef87c10dd54c3d6b961aef0f59bf6883aad08537[m
Author: Christina M <[email protected]>
Date: Sat Jun 10 12:25:16 2023 -0500
02-grid: solution, style, desired-outcome
[33mcommit f79e581f4c40bc49badd42207ee15f51777aa7fa[m
Author: Christina M <[email protected]>
Date: Sat Jun 10 12:21:17 2023 -0500
add ;
[33mcommit b7f0bd3dcb04002ee8e0c76d402965075ece98c6[m
Author: Christina M <[email protected]>
Date: Sat Jun 10 12:19:47 2023 -0500
01-grid: solution, style, desired-outcome
[33mcommit 6cee3ab17a1ff41f6645bdac5a1f483289a34e19[m
Author: Christina M <[email protected]>
Date: Sat Jun 10 12:15:43 2023 -0500
update foundations/05-decendent-combinator
[33mcommit e22d17a7964a41456bf4a93d38a5589fd3fb6039[m
Author: Christina Moore <[email protected]>
Date: Fri Jun 9 16:30:21 2023 -0500
colors for 01-grid-layout
[33mcommit 4eea74d31f0e8407c8a718e7883a59d8d7067c4f[m
Merge: cc6eec7 8730075
Author: Cody Loyd <[email protected]>
Date: Thu Jun 8 14:00:26 2023 -0500
Merge pull request #322 from linglejack06/main
05-Flex Modal: add comments and hints to solution files
[33mcommit 8730075a63602a6de74eebdc84dabd3652e3cacd[m
Author: Jack Lingle <[email protected]>
Date: Thu Jun 8 14:54:22 2023 -0400
tweak comment in solution.css
[33mcommit cc6eec73e7b105dabebf386886aefdaeab150562[m
Merge: f220546 b0ad20c
Author: Cody Loyd <[email protected]>
Date: Mon Jun 5 14:59:48 2023 -0500
Merge pull request #321 from acb123web/main
I Have Updated the Font, Based on the desired outcome image now it's exactly matching with the solution and this Fixes #259 opened issue
[33mcommit b0ad20c48f78ad71c564e300d397ee1781a2d4a7[m
Author: Bharath C Hegde <[email protected]>
Date: Mon Jun 5 22:28:11 2023 +0530
Readme.md file kept as per previous
[33mcommit 28a874dcc133de38d73ee5e57c16653b0af9bdf8[m
Author: Bharath C Hegde <[email protected]>
Date: Mon Jun 5 22:24:48 2023 +0530
Updated the outcome image as per request
[33mcommit f220546c674aec210f6442f22cbb28c84bbc0c9b[m
Merge: 07e096d 7adc44d
Author: Austin <[email protected]>
Date: Mon Jun 5 13:53:44 2023 +0100
Merge pull request #320 from finnala/fix-foundations-exercise-06
06-cascade-fix: Fix whitespace and add semi-colon to body selector
[33mcommit af08d0a39be9b4827c19093137294a8478c8df73[m
Author: Jack Lingle <[email protected]>
Date: Sat Jun 3 13:30:05 2023 -0400
update solution files to show changes in divs
[33mcommit 614103cf871227a668882225db2679f2eddfaba6[m
Author: Bharath C Hegde <[email protected]>
Date: Sat Jun 3 11:48:19 2023 +0530
I Have Updated the Font based on the desired outcome image and this Fixes #259 opened issue
[33mcommit 7adc44d354e1e850a26eae339716dd17586219b8[m
Author: finnala <[email protected]>
Date: Fri Jun 2 15:05:41 2023 +0100
Fix whitespace and add semi-colon to body selector
[33mcommit 07e096da6ca4a659dc8ac1b5c6e67bf27b4cb139[m
Merge: e7c367d 20086b6
Author: Cody Loyd <[email protected]>
Date: Wed May 3 09:20:11 2023 -0500
Merge pull request #311 from bzaman/#310-button-element-enhancement
#310 button element enhancement
[33mcommit 20086b657bf6237a015954a6b72ab0598b52e46b[m
Author: Badiuzzaman <[email protected]>
Date: Tue May 2 22:10:33 2023 +0600
cursor and border added to button
`cursor: pointer` property added to global button. `close-button` class now has two new property to achieve design goal.
[33mcommit 05dfb0c45d7bbda5392a10369e517bffaa4e3cf3[m
Author: Badiuzzaman <[email protected]>
Date: Tue May 2 22:07:00 2023 +0600
div replaced with button element
[33mcommit e7c367d6d6bb2fc4ae3a86bdf7b7b7a9bb42729e[m
Merge: a7693f4 84e7321
Author: Cody Loyd <[email protected]>
Date: Fri Apr 21 10:40:03 2023 -0500
Merge pull request #306 from zhna123/keyframe_exercise
Keyframes-Practice: Added a keyframe at rule exercise
[33mcommit 84e732112cd875a5a499ef46bccf62eb2b47b767[m
Author: zhna123 <[email protected]>
Date: Thu Apr 20 21:04:32 2023 -0400
Changed to use word expand to describe menu animations
[33mcommit eae15934bfe2836a501344ed5a90c4ece61aa8e0[m
Author: zhna123 <[email protected]>
Date: Tue Apr 18 11:26:21 2023 -0400
added animation - keyframe at rule exercise
[33mcommit a7693f4b800af2b8d4ffbf61779f4274c4902995[m
Merge: 8891e00 a163565
Author: Kevin Mulhern <[email protected]>
Date: Tue Mar 28 08:26:07 2023 +0100
Merge pull request #302 from TheOdinProject/KevinMulhern-patch-1
Create LICENSE
[33mcommit 8891e00fe8ee169857a6508956f7ff79a1e3a491[m
Merge: db23fc7 39ed908
Author: Cody Loyd <[email protected]>
Date: Sun Mar 26 16:29:19 2023 -0500
Merge pull request #304 from DutsAndrew/main
removed duplicate element selector & added semicolon
[33mcommit 39ed908683b36a3aafda52b9b72b9593a52aa0f1[m
Author: Andrew Dutson <[email protected]>
Date: Sun Mar 26 10:49:18 2023 -0600
removed duplicate element selector & added semicolon
[33mcommit a163565c6a8a78a269238d34c5869baee03323b4[m
Author: Kevin Mulhern <[email protected]>
Date: Sat Mar 25 15:40:56 2023 +0000
Create LICENSE
* Adding the MIT licence
[33mcommit db23fc7309e0c9bb6bade573a5316f5da15e1855[m
Merge: 3460a8d 56d22ee
Author: Eric Olkowski <[email protected]>
Date: Sat Feb 11 07:34:46 2023 -0500
Merge pull request #274 from Torelli/patch-2
Fix exercise description
[33mcommit 3460a8d4bcbaa65359485903f752148eae736911[m
Merge: 50fccec ea9fb98
Author: Michael Frank <[email protected]>
Date: Sat Feb 11 16:58:26 2023 +1300
Merge pull request #281 from dotarjun/main
flex/07-flex-layout-2 : fix solution.css inconsistency
[33mcommit ea9fb9815f35690cd1fc79189c92d0aaa30a8879[m
Author: Arjun <[email protected]>
Date: Tue Jan 31 12:57:09 2023 +0530
Move Border box to the non solution part
[33mcommit befceeb1e9819c6883583ad5a9c824ee4108d07f[m
Author: Arjun <[email protected]>
Date: Mon Jan 30 11:40:47 2023 +0530
🔲 Fix inconsistency in solution with correct formatting
[33mcommit 03f4e594a8e037994c303457af76965729c86c67[m
Author: Arjun <[email protected]>
Date: Mon Jan 30 11:21:03 2023 +0530
Revert "🔲 Fix inconsistency in solution"
This reverts commit 960fd765722b25f2dc7df2063bc129895c920fa6.
[33mcommit 960fd765722b25f2dc7df2063bc129895c920fa6[m
Author: Arjun <[email protected]>
Date: Fri Jan 27 07:22:49 2023 +0530
🔲 Fix inconsistency in solution
[33mcommit 56d22eeb6389840a2fbef2e28a54b8e0aa5f4394[m
Author: Giovanni Torelli <[email protected]>
Date: Mon Jan 23 16:20:41 2023 -0300
Update flex/03-flex-header-2/README.md
Co-authored-by: Eric Olkowski <[email protected]>
[33mcommit 50fccec8c43e0e694e4863f41fb64dbb13d46729[m
Merge: 3a55a54 81a838c
Author: Eric Olkowski <[email protected]>
Date: Sat Jan 21 08:38:56 2023 -0500
Merge pull request #241 from BiscuitCandy/main
location of change: 01-css-methods/solutions - Solution represents desired outcome
[33mcommit bbf0c9f202cf3bba754f60b96e28828c26d96fcc[m
Author: Giovanni Torelli <[email protected]>
Date: Wed Jan 11 18:05:51 2023 -0300
Fix exercise description
In the previous exercise we already had to nest a flex container inside of another, so this is not the first time we are doing it.
[33mcommit 3a55a545a1ced19bbcac2d81bb0e69240bd62f28[m
Merge: 8bea2cf 7e72914
Author: Eric Olkowski <[email protected]>
Date: Sat Nov 19 09:51:37 2022 -0500
Merge pull request #257 from Asartea/patch-1
02-class-id-selectors: Tweak note wording to make it clearer that desired-outcome.png isn't leading
[33mcommit 8bea2cf448a781d9371a29c040507c18a9c5571f[m
Merge: b65d8fa baea35d
Author: Eric Olkowski <[email protected]>
Date: Sat Nov 19 07:25:06 2022 -0500
Merge pull request #190 from Zekumoru/fix_exercise_solution
02-class-id-selectors: Change solution
[33mcommit 7e72914ed33d41056350d1f706f9f0fb3ae0b6eb[m
Author: Asartea <[email protected]>
Date: Sun Nov 13 17:15:45 2022 +0100
Tweak note wording to make it clearer that desired-outcome.png isn't leading
[33mcommit b65d8fae5aaa42d276a92db434543097154f12b3[m
Author: Rachel Moser <[email protected]>
Date: Fri Oct 21 21:31:30 2022 -0500
PR Template: Flip order of checklist and details (#231)
* PR Template: Flip order of checklist and details
Because:
If the details are first, they are viewable in Discord's webhook.
This PR:
* Moves the detail sections to the beginning of the template
* Moves the checklist section to the end of the template
* Adds an issue section to link the issue
* Adds the Because, This PR, and Issue sections to checklist
* Reduce wording that is not essential
[33mcommit 81a838cbebba80a52faeaca4654eca509c181e22[m
Author: BiscuitCandy <[email protected]>
Date: Tue Oct 18 20:19:30 2022 +0530
replaced desired-outcome.png
[33mcommit 7ff6edfc2060aa42cb49bd33b880259e14b74369[m
Author: BiscuitCandy <[email protected]>
Date: Tue Oct 18 20:17:19 2022 +0530
Delete desired-outcome.png
[33mcommit 00b51b9a409d8be6d7d46c36c26f077a2192491c[m
Merge: 5ebf0de 2ca3a64
Author: Kevin Mulhern <[email protected]>
Date: Wed Oct 5 10:42:26 2022 +0100
Merge pull request #213 from richa130/my-contribution
03-grid-layout-3: Add closing p tag to line 97
[33mcommit 5ebf0de3985c770e6e7d12d37f3bced860f0779a[m
Merge: 913a077 39c4e86
Author: Kevin Mulhern <[email protected]>
Date: Wed Oct 5 10:40:13 2022 +0100
Merge pull request #224 from dougc85/fix_animation_grammar
02-pop-up: fix grammar in readme
[33mcommit 39c4e869d64a99f6c4c358832bc75258198826f7[m
Author: Doug Carter <[email protected]>
Date: Fri Sep 16 11:54:06 2022 -0700
fix grammar in pop-up instructions
[33mcommit 2ca3a645c440d6e8745533c0430fbc6e368560b6[m
Author: richa130 <[email protected]>
Date: Wed Aug 10 16:47:35 2022 -0700
Add closing p tag to line 97
[33mcommit 913a07782365d1597ffb5bf29dde4c64909ebfcf[m
Merge: f98ca16 0f83cb8
Author: Daniel Murphy <[email protected]>
Date: Fri Aug 5 11:45:28 2022 -0400
Merge pull request #211 from dm-murphy/fix-comments-06-cascade
Foundations/06-cascade-fix: Update solution comments
[33mcommit 0f83cb8e2d261c6df902f0d8caf8759617445187[m
Author: Daniel Murphy <[email protected]>
Date: Fri Aug 5 10:27:27 2022 -0400
Update solution comments
[33mcommit f98ca16e886e8cdcb7f748a44579b14e91ad7e89[m
Merge: 9c4f542 d9de639
Author: Daniel Murphy <[email protected]>
Date: Thu Aug 4 15:40:31 2022 -0400
Merge pull request #209 from JonathanRMartinezHernandez/patch-1
06-cascade-fix: Add missing weight from solution.css
[33mcommit d9de639d5ad1d12a3c728638aa2597c603878060[m
Author: Jonathan R Martinez-Hernandez <[email protected]>
Date: Thu Aug 4 14:17:55 2022 -0500
Update foundations/06-cascade-fix/style.css
Co-authored-by: Daniel Murphy <[email protected]>
[33mcommit 9c4f5423898ac9697a8d444ea722830d303685cd[m
Merge: 4c2d4a0 0713c6f
Author: Daniel Murphy <[email protected]>
Date: Thu Aug 4 12:58:17 2022 -0400
Merge pull request #207 from sai-nayunipati/add_missing_punctuation
04-flex-information: Add missing question mark to html files
[33mcommit 58fe9c32eb28c9cb5cc76bae55a468cd57c96bf4[m
Author: Jonathan R Martinez-Hernandez <[email protected]>
Date: Sun Jul 31 20:12:30 2022 -0500
Added missing weight from solution.css
The solution.css has a font weight of 800 on the classes .para, small-para, .small-para, and .child that were missing from the originally assigned style.css
[33mcommit 4c2d4a06781b52c935cff630f99d7a93662af9e8[m
Merge: 35adbf6 8e45e85
Author: Daniel Murphy <[email protected]>
Date: Sun Jul 31 15:46:34 2022 -0400
Merge pull request #205 from Amandasilvbr/update-for-accessibility
Cascade-fix: update for accessibility #188
[33mcommit 8e45e85f04162ba89b3c4c23919c92e233c2cf12[m
Author: Amanda <[email protected]>
Date: Sun Jul 31 11:19:39 2022 -0300
Update solution.html
[33mcommit 0713c6fe01d876a1af8e005c1d5a62bf45cc06e3[m
Author: Sai Nayunipati <[email protected]>
Date: Fri Jul 29 09:55:14 2022 -0400
Add missing question mark to html files
And update the desired-outcome.png
[33mcommit e2a1bfde7eedf059b238616ad9a57cbdcc667e06[m
Author: Amanda <[email protected]>
Date: Fri Jul 29 09:30:32 2022 -0300
Update solution.css
[33mcommit ec47b311c96465f04e9ec87120d31a496734481b[m
Author: Amanda <[email protected]>
Date: Fri Jul 29 09:26:53 2022 -0300
Update desired-outcome
[33mcommit e789cd1c542e68104691d41b04db1dfabe1f999e[m
Author: Amanda <[email protected]>
Date: Fri Jul 29 09:23:36 2022 -0300
Delete desired-outcome.png
[33mcommit f4d42886074bf4c4d07031e9d84c7a69c40e042b[m
Author: Amanda <[email protected]>
Date: Fri Jul 29 09:18:54 2022 -0300
Update solution.css
[33mcommit ad7ccdc0c1d642527d48ab387583539c7685a069[m
Author: Amanda <[email protected]>
Date: Fri Jul 29 09:17:26 2022 -0300
Update index.html
[33mcommit 9bf194d8a25fd354aa1394475540a2170ac8922e[m
Author: Amanda <[email protected]>
Date: Tue Jul 26 14:42:42 2022 -0300
Update cascade-fix/README.md
Co-authored-by: Daniel Murphy <[email protected]>
[33mcommit 8923285cc9de9a63edb6107eab8837cdb8366ea3[m
Author: Amanda Brunelli <[email protected]>
Date: Tue Jul 26 08:51:44 2022 -0300
Add new img
[33mcommit b919b54558b7fc41473f3f555635426acdce6b84[m
Author: Amanda Brunelli <[email protected]>
Date: Tue Jul 26 08:50:43 2022 -0300
Update for accessibility
[33mcommit 35adbf668607e572d94fa4ee17e3164bbfe69178[m
Merge: 2085586 1a409ec
Author: Daniel Murphy <[email protected]>
Date: Mon Jul 25 17:41:01 2022 -0400
Merge pull request #202 from Amandasilvbr/alt-text
Flex and Foundations: add alt text for accessibility (#201)
[33mcommit 1a409ecd1e7388473c4583d3354d1a453ca7c83e[m
Author: Amanda Brunelli <[email protected]>
Date: Fri Jul 22 12:15:28 2022 -0300
Add alt text
[33mcommit 2085586d9a8125d896c59e0d1cbc7d8a88bedac4[m
Merge: 5279f7f 2734b65
Author: Daniel Murphy <[email protected]>
Date: Tue Jul 12 19:48:09 2022 -0400
Merge pull request #187 from mengxihe/patch-2
grid/03-grid-layout-3/solution/solution.css : the grid-template-row command seems unnecessary
[33mcommit baea35d4980ab38251af5d34758bf38e11dce6b4[m
Author: Zekumoru Dragonhart <[email protected]>
Date: Sun Jul 10 11:22:32 2022 +0200
Add comment about reducing duplicate code
[33mcommit 5279f7fb9facd1b87e7a9dbddf71ffe976d9f7d3[m
Merge: d4758f5 3b4ebbf
Author: Daniel Murphy <[email protected]>
Date: Thu Jul 7 13:47:01 2022 -0400
Merge pull request #191 from maznevskia/flex_excercise_3_extra_space
css-exercises/flex/03-flex-header-2/style.css: Removed extra space from style.css
[33mcommit d4758f5b2fa839d050f75d892e00f251a88345bf[m
Merge: 3410acf ca48e17
Author: Daniel Murphy <[email protected]>
Date: Thu Jul 7 10:52:54 2022 -0400
Merge pull request #194 from msespos/replace-grid-03-desired-outcome
03-grid-layout: Replace desired-outcome.png
[33mcommit ca48e17d05c55b78eb60b490dd3d09e572d88fc2[m
Author: Mike Esposito <[email protected]>
Date: Thu Jul 7 07:36:29 2022 -0700
Replace grid 03 desired-outcome.png
[33mcommit 3b4ebbfde54ccc5aecf4c4f46b832c6fa30bcc33[m
Author: maznevskia <[email protected]>
Date: Thu Jun 30 11:42:30 2022 +0200
Removed extra space from style.css
[33mcommit 4634b5f7631fb1f210b55fee117248177b9cf43d[m
Author: Zekumoru Dragonhart <[email protected]>
Date: Wed Jun 29 04:42:44 2022 +0200
Change solutions for third and fourth elements
Third and fourth elements share the same declaration for font-size.
[33mcommit 2734b6558d6e061b09457d8780abcbb0d0e8f11c[m
Author: Mengxi He <[email protected]>
Date: Sun Jun 26 12:57:55 2022 +0200
the grid-template-row command seems unnecessary
[33mcommit 3410acf607222c2aa3aa09fbc3169f61d9848bf0[m
Merge: e34cb96 055475a
Author: Eric Olkowski <[email protected]>
Date: Tue Jun 14 14:12:27 2022 -0400
Merge pull request #173 from acb123web/acb-1
This Commit fixes #170 opened issue
[33mcommit e34cb96d5e2103a5cc9d83acc9b5173acb7bc43a[m
Merge: ddbff17 965fcbd
Author: Daniel Murphy <[email protected]>
Date: Mon Jun 13 21:18:18 2022 -0400
Merge pull request #175 from dm-murphy/fix/03-grid-hint-wording
03-grid-layout-3: Change hint wording for adding CSS declaration blocks
[33mcommit 965fcbd6a147d4e152dd15e1ebe12a25960fe305[m
Author: Daniel Murphy <[email protected]>
Date: Mon Jun 13 21:17:35 2022 -0400
Update grid/03-grid-layout-3/README.md
Co-authored-by: Eric Olkowski <[email protected]>
[33mcommit ddbff171779a62170bc8d0323dd032eaeee767af[m
Merge: 2ca2000 dd6b001
Author: Daniel Murphy <[email protected]>
Date: Thu Jun 9 22:19:59 2022 -0400
Merge pull request #183 from NateTewolde/patch-1
03-grid-layout-3: Remove a duplicate line of code from solution.css
[33mcommit dd6b001a1e62c07aed63ff5dcb6241ebfacee220[m
Author: NateTewolde <[email protected]>
Date: Sun Jun 5 13:09:35 2022 -0700
Remove a duplicate line of code from solution.css
There is a text-align:center in the .container block under the /*SOLUTION*/ comment when there is already a text-align:center within the original .container block on line 7.
[33mcommit 8719d34fdae5e40266b496f2e90578c3aa403875[m
Author: Daniel Murphy <[email protected]>
Date: Thu May 12 12:27:30 2022 -0400
Change hint wording for adding CSS declaration blocks
[33mcommit 2ca200017740264333b969ce1527af4b6c50e848[m
Merge: d27b59b 79173b3
Author: Cody Loyd <[email protected]>
Date: Thu May 12 10:11:45 2022 -0500
Merge pull request #174 from TheOdinProject/codyloyd-patch-3
Update README.md
[33mcommit 79173b3b449371e7d0655212d76d56fb9cbbc09a[m
Author: Cody Loyd <[email protected]>
Date: Thu May 12 10:10:44 2022 -0500
Update README.md
[33mcommit 055475a3ae2405de53e8b63169bfdf093ab10b50[m
Author: Bharath C Hegde <[email protected]>
Date: Sun Apr 17 20:09:10 2022 +0530
This Commit fixes #170 opened issue
[33mcommit d27b59b78b073cfea8691637ce2befd3334b5a73[m
Merge: 38dc43b 0c62902
Author: Eric Olkowski <[email protected]>
Date: Sat Apr 16 10:01:36 2022 -0400
Merge pull request #163 from DragunovVelimirovic/patch-2
03-grid-layout-3 Update solutions.css
[33mcommit 38dc43bd04c8865fadd3ad14c3e78daff44bac9a[m
Merge: c7cba9f 83ecb57
Author: Eric Olkowski <[email protected]>
Date: Sat Apr 16 08:31:54 2022 -0400
Merge pull request #166 from AngryGolfer/main
Easy Fix - css-exercises/foundation/06 cascade fix/solution/style.css -Typo and line wrap
[33mcommit c7cba9fbd9a13c5b67049bb26036cd18176e0a88[m
Merge: 6ee2bef 9dbce31
Author: Eric Olkowski <[email protected]>
Date: Sat Apr 16 08:24:08 2022 -0400
Merge pull request #162 from jamhog/rename_folders
margin-and-padding: Rename folders to match other exercises
[33mcommit 83ecb5730ad7d8ddd00b4384ed843de7a5685ca1[m
Author: AngryGolfer <[email protected]>
Date: Fri Apr 1 12:03:29 2022 +0100
Typo and line wrap
Changed 12px to 14px to match the .css file px size and wrapped lengthy description
[33mcommit 0c62902d0c35dbf6c32985538355535e121402a3[m
Author: DragunovVelimirovic <[email protected]>
Date: Tue Mar 29 10:54:04 2022 -0300
Pruning code by combining selectors
Both selectors were doing the same thing and were right next to each other, figured it may be cleaner to consolidate the code by combining the selectors.
[33mcommit 9dbce31f175cc064315980d09ad7a4d5db384fb0[m
Author: James Hogan <[email protected]>
Date: Mon Mar 28 14:00:58 2022 +1100
Rename folders to match other lessons
[33mcommit 6ee2bef7b12232de7e908552d79e1ebb938e5c59[m
Merge: dc722ec 2cb657e
Author: Eric Olkowski <[email protected]>
Date: Sun Mar 27 10:07:59 2022 -0400
Merge pull request #160 from Micosaur/mico-flex-patch-1
flex/06+07: Fix broken links
[33mcommit 2cb657e22bbd5185a5f868e0776d9a47f914b297[m
Merge: e4c395c dc722ec
Author: Micosaur <[email protected]>
Date: Sun Mar 27 01:19:18 2022 -0700
Merge branch 'TheOdinProject:main' into mico-flex-patch-1
[33mcommit dc722ec91cb6bc392b1390a8890c8a1ecb9eea8e[m
Merge: 303d653 fa7b2e4
Author: Eric Olkowski <[email protected]>
Date: Sat Mar 26 07:53:59 2022 -0400
Merge pull request #161 from Mmackz/patch-1
02-grid-layout-2: Update README.md
[33mcommit 303d65391c792dde58b23743c9f22f8d16e05c3c[m
Merge: 5f72a6f aa67a14
Author: Eric Olkowski <[email protected]>
Date: Sat Mar 26 07:48:04 2022 -0400
Merge pull request #159 from Micosaur/mico-patch-1
05-descendant-combinator: Add full solution
[33mcommit fa7b2e4ef611ff8dca7a0d561052032c5355ce92[m
Author: Mmackz <[email protected]>
Date: Fri Mar 25 13:31:19 2022 -0700
Change intro in readme.md
Remove the wording "It is easy" or "This is easy" from the description. This may be somewhat demotivating to someone who may be having a difficult time with these concepts.
[33mcommit e4c395ca19f120ec1bf5c0c64f68d6dc194e4097[m
Author: Micosaur <[email protected]>
Date: Thu Mar 24 06:03:41 2022 -0700
Fix all broken links
[33mcommit fb9971baf545e5aa7cd50a3284c9231416c75271[m
Author: Micosaur <[email protected]>
Date: Thu Mar 24 05:58:56 2022 -0700
Fix all broken links
[33mcommit aa67a148f053067d6ea4f7ac37266a253cd2f182[m
Author: Micosaur <[email protected]>
Date: Thu Mar 24 05:34:17 2022 -0700
Use academic-like syntax
[33mcommit 3dbbd3a266658c0946e66cb99666682cc7db84c3[m
Author: Micosaur <[email protected]>
Date: Wed Mar 23 22:21:58 2022 -0700
Add other possible solutions
[33mcommit 5f72a6f298fe9fdce5aced1615a68df43f2ecdac[m
Merge: cce37cd 25f6b3f
Author: Eric Olkowski <[email protected]>
Date: Mon Mar 14 16:31:11 2022 -0400