├── README.md
└── solutions
├── 1-pilot-battle
├── 1-simply-square.md
├── 10-cloaked-spirits.md
├── 11-eye-of-sauron.md
├── 12-wiggly-moustache.md
├── 2-carrom.md
├── 3-push-button.md
├── 4-ups-n-downs.md
├── 5-acid-rain.md
├── 6-missing-slice.md
├── 7-leafy-trail.md
├── 8-forking-crazy.md
├── 9-tesseract.md
└── images
│ ├── 1-simply-square.png
│ ├── 10-cloaked-spirits.png
│ ├── 11-eye-of-sauron.png
│ ├── 12-wiggly-moustache.png
│ ├── 2-carrom.png
│ ├── 3-push-button.png
│ ├── 4-ups-n-downs.png
│ ├── 5-acid-rain.png
│ ├── 6-missing-slice.png
│ ├── 7-leafy-trail.png
│ ├── 8-forking-crazy.png
│ ├── 9-tesseract.png
│ └── preview.png
├── 2-visibility
├── 13-totally-triangle.md
├── 14-web-maker-logo.md
├── 15-overlap.md
├── 16-eye-of-the-tiger.md
├── 17-fidget-spinner.md
├── 18-matrix.md
└── images
│ ├── 13-totally-triangle.png
│ ├── 14-web-maker-logo.png
│ ├── 15-overlap.png
│ ├── 16-eye-of-the-tiger.png
│ ├── 17-fidget-spinner.png
│ ├── 18-matrix.png
│ └── preview.png
├── 3-cursor
├── 19-cube.md
├── 20-ticket.md
└── images
│ ├── 19-cube.png
│ ├── 20-ticket.png
│ └── preview.png
├── 4-display
├── 21-sitepoint-logo.md
├── 22-cloud.md
├── 23-boxception.md
├── 24-switches.md
├── 25-blossom.md
├── 26-smiley.md
├── 27-lock-up.md
├── 28-cups-&-balls.md
└── images
│ ├── 21-sitepoint-logo.png
│ ├── 22-cloud.png
│ ├── 23-boxception.png
│ ├── 24-switches.png
│ ├── 25-blossom.png
│ ├── 26-smiley.png
│ ├── 27-lock-up.png
│ ├── 28-cups-&-balls.png
│ └── preview.png
├── 5-inline
├── 29-suffocate.md
├── 30-horizon.md
└── images
│ ├── 29-suffocate.png
│ ├── 30-horizon.png
│ └── preview.png
├── 6-conic
├── 31-equals.md
├── 32-band-aid.md
└── images
│ ├── 31-equals.png
│ ├── 32-band-aid.png
│ └── preview.png
├── 7-backface
├── 33-birdie.md
├── 35-ice-cream.md
├── 36-interleaved.md
├── 37-tunnel.md
├── 38-not-simply-square.md
├── 39-sunset.md
├── 40-letter-b.md
├── 41-fox-head.md
└── images
│ ├── 33-birdie.png
│ ├── 35-ice-cream.png
│ ├── 36-interleaved.png
│ ├── 37-tunnel.png
│ ├── 38-not-simply-square.png
│ ├── 39-sunset.png
│ ├── 40-letter-b.png
│ ├── 41-fox-head.png
│ └── preview.png
├── 8-transition
├── 43-wrench.md
├── 44-stripes.md
└── images
│ ├── 43-wrench.png
│ ├── 44-stripes.png
│ └── preview.png
└── 9-margin
├── 46-mountains.md
└── images
├── 46-mountains.png
└── preview.png
/README.md:
--------------------------------------------------------------------------------
1 | # CSS Battle
2 |
3 | Let's design with code!
4 |
5 | Here is my solutions for some problems on cssbattle.dev. Maybe this is not the best solution, but it's work!
6 |
7 | Some problems may be skipped for some reason.
8 |
9 | ## Scoring
10 |
11 | I make this solutions for better understanding and readability. So, if you want to get a higher score, you need to change the class name with a minimal character.
12 |
13 | ## Battle #1 - Pilot Battle
14 |
15 | 
16 |
17 | - [#1 - Simply Square](./solutions/1-pilot-battle/1-simply-square.md)
18 | - [#2 - Carrom](./solutions/1-pilot-battle/2-carrom.md)
19 | - [#3 - Push Button](./solutions/1-pilot-battle/3-push-button.md)
20 | - [#4 - Ups n Downs](./solutions/1-pilot-battle/4-ups-n-downs.md)
21 | - [#5 - Acid Rain](./solutions/1-pilot-battle/5-acid-rain.md)
22 | - [#6 - Missing Slice](./solutions/1-pilot-battle/6-missing-slice.md)
23 | - [#7 - Leafy Trail](./solutions/1-pilot-battle/7-leafy-trail.md)
24 | - [#8 - Forking Crazy](./solutions/1-pilot-battle/8-forking-crazy.md)
25 | - [#9 - Tesseract](./solutions/1-pilot-battle/9-tesseract.md)
26 | - [#10 - Cloaked Spirits](./solutions/1-pilot-battle/10-cloaked-spirits.md)
27 | - [#11 - Eye of Sauron](./solutions/1-pilot-battle/11-eye-of-sauron.md)
28 | - [#12 - Wiggly Moustache](./solutions/1-pilot-battle/12-wiggly-moustache.md)
29 |
30 | ## Battle #2 - Visibility
31 |
32 | 
33 |
34 | - [#13 - Totally Triangle](./solutions/2-visibility/13-totally-triangle.md)
35 | - [#14 - Web Maker Logo](./solutions/2-visibility/14-web-maker-logo.md)
36 | - [#15 - Overlap](./solutions/2-visibility/15-overlap.md)
37 | - [#16 - Eye of The Tiger](./solutions/2-visibility/16-eye-of-the-tiger.md)
38 | - [#17 - Fidget Spinner](./solutions/2-visibility/17-fidget-spinner.md)
39 | - [#18 - Matrix](./solutions/2-visibility/18-matrix.md)
40 |
41 | ## Battle #3 - Cursor
42 |
43 | 
44 |
45 | - [#19 - Cube](./solutions/3-cursor/19-cube.md)
46 | - [#20 - Ticket](./solutions/3-cursor/20-ticket.md)
47 |
48 | ## Battle #4 - Display
49 |
50 | 
51 |
52 | - [#21 - SitePoint Logo](./solutions/4-display/21-sitepoint-logo.md)
53 | - [#22 - Cloud](./solutions/4-display/22-cloud.md)
54 | - [#23 - Boxception](./solutions/4-display/23-boxception.md)
55 | - [#24 - Switches](./solutions/4-display/24-switches.md)
56 | - [#25 - Blossom](./solutions/4-display/25-blossom.md)
57 | - [#26 - Smiley](./solutions/4-display/26-smiley.md)
58 | - [#27 - Lock Up](./solutions/4-display/27-lock-up.md)
59 | - [#28 - Cups & Balls](./solutions/4-display/28-cups-&-balls.md)
60 |
61 | ## Battle #5 - Inline
62 |
63 | 
64 |
65 | - [#29 - Suffocate](./solutions/5-inline/29-suffocate.md)
66 | - [#30 - Horizon](./solutions/5-inline/30-horizon.md)
67 |
68 | ## Battle #6 - Conic
69 |
70 | 
71 |
72 | - [#31 - Equals](./solutions/6-conic/31-equals.md)
73 | - [#32 - Band-aid](./solutions/6-conic/32-band-aid.md)
74 |
75 | ## Battle #7 - Backface
76 |
77 | 
78 |
79 | - [#33 - Birdie](./solutions/7-backface/33-birdie.md)
80 | - #34 - Christmas Tree (Skipped)
81 | - [#35 - Ice Cream](./solutions/7-backface/35-ice-cream.md)
82 | - [#36 - Interleaved](./solutions/7-backface/36-interleaved.md)
83 | - [#37 - Tunnel](./solutions/7-backface/37-tunnel.md)
84 | - [#38 - Not Simply Square](./solutions/7-backface/38-not-simply-square.md)
85 | - [#39 - Sunset](./solutions/7-backface/39-sunset.md)
86 | - [#40 - Letter B](./solutions/7-backface/40-letter-b.md)
87 | - [#41 - Fox Head](./solutions/7-backface/41-fox-head.md)
88 |
89 | ## Battle #8 - Transition
90 |
91 | 
92 |
93 | - #42 - Baby (Skipped)
94 | - [#43 - Wrench](./solutions/8-transition/43-wrench.md)
95 | - [#44 - Stripes](./solutions/8-transition/44-stripes.md)
96 |
97 | ## Battle #9 - Margin
98 |
99 | 
100 |
101 | - #45 - Magical Tree (Skipped)
102 | - [#46 - Mountains](./solutions/9-margin/46-mountains.md)
103 |
104 | Wait for other solutions...
--------------------------------------------------------------------------------
/solutions/1-pilot-battle/1-simply-square.md:
--------------------------------------------------------------------------------
1 | # Battle #1 - Pilot Battle
2 |
3 | ## #1 - Simple Square
4 |
5 | [Link to the problem](https://cssbattle.dev/play/1)
6 |
7 | 
8 |
9 | ```html
10 |
11 |
24 | ```
--------------------------------------------------------------------------------
/solutions/1-pilot-battle/10-cloaked-spirits.md:
--------------------------------------------------------------------------------
1 | # Battle #1 - Pilot Battle
2 |
3 | ## #10 - Cloaked Spirits
4 |
5 | [Link to the problem](https://cssbattle.dev/play/10)
6 |
7 | 
8 |
9 | ```html
10 |
13 |
16 |
19 |
52 | ```
--------------------------------------------------------------------------------
/solutions/1-pilot-battle/11-eye-of-sauron.md:
--------------------------------------------------------------------------------
1 | # Battle #1 - Pilot Battle
2 |
3 | ## #11 - Eye of Sauron
4 |
5 | [Link to the problem](https://cssbattle.dev/play/11)
6 |
7 | 
8 |
9 | ```html
10 |
11 |
14 |
15 |
61 | ```
--------------------------------------------------------------------------------
/solutions/1-pilot-battle/12-wiggly-moustache.md:
--------------------------------------------------------------------------------
1 | # Battle #1 - Pilot Battle
2 |
3 | ## #12 - Wiggly Moustache
4 |
5 | [Link to the problem](https://cssbattle.dev/play/12)
6 |
7 | 
8 |
9 | ```html
10 |
11 |
12 |
13 |
58 | ```
--------------------------------------------------------------------------------
/solutions/1-pilot-battle/2-carrom.md:
--------------------------------------------------------------------------------
1 | # Battle #1 - Pilot Battle
2 |
3 | ## #2 - Carrom
4 |
5 | [Link to the problem](https://cssbattle.dev/play/2)
6 |
7 | 
8 |
9 | ```html
10 |
16 |
43 | ```
--------------------------------------------------------------------------------
/solutions/1-pilot-battle/3-push-button.md:
--------------------------------------------------------------------------------
1 | # Battle #1 - Pilot Battle
2 |
3 | ## #3 - Push Button
4 |
5 | [Link to the problem](https://cssbattle.dev/play/3)
6 |
7 | 
8 |
9 | ```html
10 |
14 |
47 | ```
--------------------------------------------------------------------------------
/solutions/1-pilot-battle/4-ups-n-downs.md:
--------------------------------------------------------------------------------
1 | # Battle #1 - Pilot Battle
2 |
3 | ## #4 - Ups n Downs
4 |
5 | [Link to the problem](https://cssbattle.dev/play/4)
6 |
7 | 
8 |
9 | ```html
10 |
15 |
40 |
41 | ```
--------------------------------------------------------------------------------
/solutions/1-pilot-battle/5-acid-rain.md:
--------------------------------------------------------------------------------
1 | # Battle #1 - Pilot Battle
2 |
3 | ## #5 Acin Rain
4 |
5 | [Link to the problem](https://cssbattle.dev/play/5)
6 |
7 | 
8 |
9 | ```html
10 |
15 |
46 | ```
--------------------------------------------------------------------------------
/solutions/1-pilot-battle/6-missing-slice.md:
--------------------------------------------------------------------------------
1 | # Battle #1 - Pilot Battle
2 |
3 | ## #6 - Missing SLice
4 |
5 | [Link to the problem](https://cssbattle.dev/play/6)
6 |
7 | 
8 |
9 | ```html
10 |
11 |
25 | ```
--------------------------------------------------------------------------------
/solutions/1-pilot-battle/7-leafy-trail.md:
--------------------------------------------------------------------------------
1 | # Battle #1 - Pilot Battle
2 |
3 | ## #7 - Leafy Trail
4 |
5 | [Link to the problem](https://cssbattle.dev/play/7)
6 |
7 | 
8 |
9 | ```html
10 |
15 |
47 | ```
--------------------------------------------------------------------------------
/solutions/1-pilot-battle/8-forking-crazy.md:
--------------------------------------------------------------------------------
1 | # Battle #1 - Pilot Battle
2 |
3 | ## #8 - Forking Crazy
4 |
5 | [Link to the problem](https://cssbattle.dev/play/8)
6 |
7 | 
8 |
9 | ```html
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
72 | ```
--------------------------------------------------------------------------------
/solutions/1-pilot-battle/9-tesseract.md:
--------------------------------------------------------------------------------
1 | # Battle #1 - Pilot Battle
2 |
3 | ## #9 - Tesseract
4 |
5 | [Link to the problem](https://cssbattle.dev/play/9)
6 |
7 | 
8 |
9 | ```html
10 |
11 |
12 |
13 |
14 |
52 | ```
--------------------------------------------------------------------------------
/solutions/1-pilot-battle/images/1-simply-square.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ngekoding/cssbattle/de051eab4db7c7561e56b8182571a04a73a7e709/solutions/1-pilot-battle/images/1-simply-square.png
--------------------------------------------------------------------------------
/solutions/1-pilot-battle/images/10-cloaked-spirits.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ngekoding/cssbattle/de051eab4db7c7561e56b8182571a04a73a7e709/solutions/1-pilot-battle/images/10-cloaked-spirits.png
--------------------------------------------------------------------------------
/solutions/1-pilot-battle/images/11-eye-of-sauron.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ngekoding/cssbattle/de051eab4db7c7561e56b8182571a04a73a7e709/solutions/1-pilot-battle/images/11-eye-of-sauron.png
--------------------------------------------------------------------------------
/solutions/1-pilot-battle/images/12-wiggly-moustache.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ngekoding/cssbattle/de051eab4db7c7561e56b8182571a04a73a7e709/solutions/1-pilot-battle/images/12-wiggly-moustache.png
--------------------------------------------------------------------------------
/solutions/1-pilot-battle/images/2-carrom.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ngekoding/cssbattle/de051eab4db7c7561e56b8182571a04a73a7e709/solutions/1-pilot-battle/images/2-carrom.png
--------------------------------------------------------------------------------
/solutions/1-pilot-battle/images/3-push-button.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ngekoding/cssbattle/de051eab4db7c7561e56b8182571a04a73a7e709/solutions/1-pilot-battle/images/3-push-button.png
--------------------------------------------------------------------------------
/solutions/1-pilot-battle/images/4-ups-n-downs.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ngekoding/cssbattle/de051eab4db7c7561e56b8182571a04a73a7e709/solutions/1-pilot-battle/images/4-ups-n-downs.png
--------------------------------------------------------------------------------
/solutions/1-pilot-battle/images/5-acid-rain.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ngekoding/cssbattle/de051eab4db7c7561e56b8182571a04a73a7e709/solutions/1-pilot-battle/images/5-acid-rain.png
--------------------------------------------------------------------------------
/solutions/1-pilot-battle/images/6-missing-slice.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ngekoding/cssbattle/de051eab4db7c7561e56b8182571a04a73a7e709/solutions/1-pilot-battle/images/6-missing-slice.png
--------------------------------------------------------------------------------
/solutions/1-pilot-battle/images/7-leafy-trail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ngekoding/cssbattle/de051eab4db7c7561e56b8182571a04a73a7e709/solutions/1-pilot-battle/images/7-leafy-trail.png
--------------------------------------------------------------------------------
/solutions/1-pilot-battle/images/8-forking-crazy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ngekoding/cssbattle/de051eab4db7c7561e56b8182571a04a73a7e709/solutions/1-pilot-battle/images/8-forking-crazy.png
--------------------------------------------------------------------------------
/solutions/1-pilot-battle/images/9-tesseract.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ngekoding/cssbattle/de051eab4db7c7561e56b8182571a04a73a7e709/solutions/1-pilot-battle/images/9-tesseract.png
--------------------------------------------------------------------------------
/solutions/1-pilot-battle/images/preview.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ngekoding/cssbattle/de051eab4db7c7561e56b8182571a04a73a7e709/solutions/1-pilot-battle/images/preview.png
--------------------------------------------------------------------------------
/solutions/2-visibility/13-totally-triangle.md:
--------------------------------------------------------------------------------
1 | # Battle #2 - Visibility
2 |
3 | ## #13 - Totally Triangle
4 |
5 | [Link to the problem](https://cssbattle.dev/play/13)
6 |
7 | 
8 |
9 | ```html
10 |
11 |
23 | ```
--------------------------------------------------------------------------------
/solutions/2-visibility/14-web-maker-logo.md:
--------------------------------------------------------------------------------
1 | # Battle #2 - Visibility
2 |
3 | ## #14 - Web Maker Logo
4 |
5 | [Link to the problem](https://cssbattle.dev/play/14)
6 |
7 | 
8 |
9 | ```html
10 |
16 |
53 | ```
--------------------------------------------------------------------------------
/solutions/2-visibility/15-overlap.md:
--------------------------------------------------------------------------------
1 | # Battle #2 - Visibility
2 |
3 | ## #15 - Overlap
4 |
5 | [Link to the problem](https://cssbattle.dev/play/15)
6 |
7 | 
8 |
9 | ```html
10 |
11 |
12 |
13 |
43 | ```
--------------------------------------------------------------------------------
/solutions/2-visibility/16-eye-of-the-tiger.md:
--------------------------------------------------------------------------------
1 | # Battle #2 - Visibility
2 |
3 | ## #16 - Eye of The Tiger
4 |
5 | [Link to the problem](https://cssbattle.dev/play/16)
6 |
7 | 
8 |
9 | ```html
10 |
11 |
12 |
52 | ```
--------------------------------------------------------------------------------
/solutions/2-visibility/17-fidget-spinner.md:
--------------------------------------------------------------------------------
1 | # Battle #2 - Visibility
2 |
3 | ## #17 - Fidget Spinner
4 |
5 | [Link to the problem](https://cssbattle.dev/play/17)
6 |
7 | 
8 |
9 | ```html
10 |
11 |
12 |
13 |
14 |
15 |
54 | ```
--------------------------------------------------------------------------------
/solutions/2-visibility/18-matrix.md:
--------------------------------------------------------------------------------
1 | # Battle #2 - Visibility
2 |
3 | ## #18 - Matrix
4 |
5 | [Link to the problem](https://cssbattle.dev/play/18)
6 |
7 | 
8 |
9 | ```html
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
45 | ```
--------------------------------------------------------------------------------
/solutions/2-visibility/images/13-totally-triangle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ngekoding/cssbattle/de051eab4db7c7561e56b8182571a04a73a7e709/solutions/2-visibility/images/13-totally-triangle.png
--------------------------------------------------------------------------------
/solutions/2-visibility/images/14-web-maker-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ngekoding/cssbattle/de051eab4db7c7561e56b8182571a04a73a7e709/solutions/2-visibility/images/14-web-maker-logo.png
--------------------------------------------------------------------------------
/solutions/2-visibility/images/15-overlap.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ngekoding/cssbattle/de051eab4db7c7561e56b8182571a04a73a7e709/solutions/2-visibility/images/15-overlap.png
--------------------------------------------------------------------------------
/solutions/2-visibility/images/16-eye-of-the-tiger.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ngekoding/cssbattle/de051eab4db7c7561e56b8182571a04a73a7e709/solutions/2-visibility/images/16-eye-of-the-tiger.png
--------------------------------------------------------------------------------
/solutions/2-visibility/images/17-fidget-spinner.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ngekoding/cssbattle/de051eab4db7c7561e56b8182571a04a73a7e709/solutions/2-visibility/images/17-fidget-spinner.png
--------------------------------------------------------------------------------
/solutions/2-visibility/images/18-matrix.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ngekoding/cssbattle/de051eab4db7c7561e56b8182571a04a73a7e709/solutions/2-visibility/images/18-matrix.png
--------------------------------------------------------------------------------
/solutions/2-visibility/images/preview.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ngekoding/cssbattle/de051eab4db7c7561e56b8182571a04a73a7e709/solutions/2-visibility/images/preview.png
--------------------------------------------------------------------------------
/solutions/3-cursor/19-cube.md:
--------------------------------------------------------------------------------
1 | # Battle #3 - Cursor
2 |
3 | ## #19 - Cube
4 |
5 | [Link to the problem](https://cssbattle.dev/play/19)
6 |
7 | 
8 |
9 | ```html
10 |
11 |
12 |
13 |
44 | ```
--------------------------------------------------------------------------------
/solutions/3-cursor/20-ticket.md:
--------------------------------------------------------------------------------
1 | # Battle #3 - Cursor
2 |
3 | ## #20 - Ticket
4 |
5 | [Link to the problem](https://cssbattle.dev/play/20)
6 |
7 | 
8 |
9 | ```html
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
60 | ```
--------------------------------------------------------------------------------
/solutions/3-cursor/images/19-cube.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ngekoding/cssbattle/de051eab4db7c7561e56b8182571a04a73a7e709/solutions/3-cursor/images/19-cube.png
--------------------------------------------------------------------------------
/solutions/3-cursor/images/20-ticket.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ngekoding/cssbattle/de051eab4db7c7561e56b8182571a04a73a7e709/solutions/3-cursor/images/20-ticket.png
--------------------------------------------------------------------------------
/solutions/3-cursor/images/preview.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ngekoding/cssbattle/de051eab4db7c7561e56b8182571a04a73a7e709/solutions/3-cursor/images/preview.png
--------------------------------------------------------------------------------
/solutions/4-display/21-sitepoint-logo.md:
--------------------------------------------------------------------------------
1 | # Battle #4 - Display
2 |
3 | ## #21 - SitePoint Logo
4 |
5 | [Link to the problem](https://cssbattle.dev/play/21)
6 |
7 | 
8 |
9 | ```html
10 |
14 |
18 |
54 | ```
--------------------------------------------------------------------------------
/solutions/4-display/22-cloud.md:
--------------------------------------------------------------------------------
1 | # Battle #4 - Display
2 |
3 | ## #22 - Cloud
4 |
5 | [Link to the problem](https://cssbattle.dev/play/22)
6 |
7 | 
8 |
9 | ```html
10 |
11 |
12 |
13 |
42 | ```
--------------------------------------------------------------------------------
/solutions/4-display/23-boxception.md:
--------------------------------------------------------------------------------
1 | # Battle #4 - Display
2 |
3 | ## #23 - Boxception
4 |
5 | [Link to the problem](https://cssbattle.dev/play/23)
6 |
7 | 
8 |
9 | ```html
10 |
14 |
44 | ```
--------------------------------------------------------------------------------
/solutions/4-display/24-switches.md:
--------------------------------------------------------------------------------
1 | # Battle #4 - Display
2 |
3 | ## #24 - Switches
4 |
5 | [Link to the problem](https://cssbattle.dev/play/24)
6 |
7 | 
8 |
9 | ```html
10 |
11 |
12 |
42 | ```
--------------------------------------------------------------------------------
/solutions/4-display/25-blossom.md:
--------------------------------------------------------------------------------
1 | # Battle #4 - Display
2 |
3 | ## #25 - Blossom
4 |
5 | [Link to the problem](https://cssbattle.dev/play/25)
6 |
7 | 
8 |
9 | ```html
10 |
16 |
49 | ```
--------------------------------------------------------------------------------
/solutions/4-display/26-smiley.md:
--------------------------------------------------------------------------------
1 | # Battle #4 - Display
2 |
3 | ## #26 - Smiley
4 |
5 | [Link to the problem](https://cssbattle.dev/play/26)
6 |
7 | 
8 |
9 | ```html
10 |
11 |
12 |
13 |
34 | ```
--------------------------------------------------------------------------------
/solutions/4-display/27-lock-up.md:
--------------------------------------------------------------------------------
1 | # Battle #4 - Display
2 |
3 | ## #27 - Lock Up
4 |
5 | [Link to the problem](https://cssbattle.dev/play/27)
6 |
7 | 
8 |
9 | ```html
10 |
15 |
52 | ```
--------------------------------------------------------------------------------
/solutions/4-display/28-cups-&-balls.md:
--------------------------------------------------------------------------------
1 | # Battle #4 - Display
2 |
3 | ## #28 - Cups & Balls
4 |
5 | [Link to the problem](https://cssbattle.dev/play/28)
6 |
7 | 
8 |
9 | ```html
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
41 | ```
--------------------------------------------------------------------------------
/solutions/4-display/images/21-sitepoint-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ngekoding/cssbattle/de051eab4db7c7561e56b8182571a04a73a7e709/solutions/4-display/images/21-sitepoint-logo.png
--------------------------------------------------------------------------------
/solutions/4-display/images/22-cloud.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ngekoding/cssbattle/de051eab4db7c7561e56b8182571a04a73a7e709/solutions/4-display/images/22-cloud.png
--------------------------------------------------------------------------------
/solutions/4-display/images/23-boxception.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ngekoding/cssbattle/de051eab4db7c7561e56b8182571a04a73a7e709/solutions/4-display/images/23-boxception.png
--------------------------------------------------------------------------------
/solutions/4-display/images/24-switches.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ngekoding/cssbattle/de051eab4db7c7561e56b8182571a04a73a7e709/solutions/4-display/images/24-switches.png
--------------------------------------------------------------------------------
/solutions/4-display/images/25-blossom.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ngekoding/cssbattle/de051eab4db7c7561e56b8182571a04a73a7e709/solutions/4-display/images/25-blossom.png
--------------------------------------------------------------------------------
/solutions/4-display/images/26-smiley.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ngekoding/cssbattle/de051eab4db7c7561e56b8182571a04a73a7e709/solutions/4-display/images/26-smiley.png
--------------------------------------------------------------------------------
/solutions/4-display/images/27-lock-up.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ngekoding/cssbattle/de051eab4db7c7561e56b8182571a04a73a7e709/solutions/4-display/images/27-lock-up.png
--------------------------------------------------------------------------------
/solutions/4-display/images/28-cups-&-balls.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ngekoding/cssbattle/de051eab4db7c7561e56b8182571a04a73a7e709/solutions/4-display/images/28-cups-&-balls.png
--------------------------------------------------------------------------------
/solutions/4-display/images/preview.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ngekoding/cssbattle/de051eab4db7c7561e56b8182571a04a73a7e709/solutions/4-display/images/preview.png
--------------------------------------------------------------------------------
/solutions/5-inline/29-suffocate.md:
--------------------------------------------------------------------------------
1 | # Battle #5 - Inline
2 |
3 | ## #29 - Suffocate
4 |
5 | [Link to the problem](https://cssbattle.dev/play/29)
6 |
7 | 
8 |
9 | ```html
10 |
11 |
12 |
13 |
14 |
15 |
41 | ```
--------------------------------------------------------------------------------
/solutions/5-inline/30-horizon.md:
--------------------------------------------------------------------------------
1 | # Battle #5 - Inline
2 |
3 | ## #30 - Horizon
4 |
5 | [Link to the problem](https://cssbattle.dev/play/30)
6 |
7 | 
8 |
9 | ```html
10 |
11 |
12 |
13 |
31 | ```
--------------------------------------------------------------------------------
/solutions/5-inline/images/29-suffocate.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ngekoding/cssbattle/de051eab4db7c7561e56b8182571a04a73a7e709/solutions/5-inline/images/29-suffocate.png
--------------------------------------------------------------------------------
/solutions/5-inline/images/30-horizon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ngekoding/cssbattle/de051eab4db7c7561e56b8182571a04a73a7e709/solutions/5-inline/images/30-horizon.png
--------------------------------------------------------------------------------
/solutions/5-inline/images/preview.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ngekoding/cssbattle/de051eab4db7c7561e56b8182571a04a73a7e709/solutions/5-inline/images/preview.png
--------------------------------------------------------------------------------
/solutions/6-conic/31-equals.md:
--------------------------------------------------------------------------------
1 | # Battle #6 - Conic
2 |
3 | ## #31 - Equals
4 |
5 | [Link to the problem](https://cssbattle.dev/play/31)
6 |
7 | 
8 |
9 | ```html
10 |
11 |
12 |
32 | ```
--------------------------------------------------------------------------------
/solutions/6-conic/32-band-aid.md:
--------------------------------------------------------------------------------
1 | # Battle #6 - Conic
2 |
3 | ## #32 - Band-aid
4 |
5 | [Link to the problem](https://cssbattle.dev/play/32)
6 |
7 | 
8 |
9 | ```html
10 |
11 |
12 |
13 |
38 | ```
--------------------------------------------------------------------------------
/solutions/6-conic/images/31-equals.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ngekoding/cssbattle/de051eab4db7c7561e56b8182571a04a73a7e709/solutions/6-conic/images/31-equals.png
--------------------------------------------------------------------------------
/solutions/6-conic/images/32-band-aid.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ngekoding/cssbattle/de051eab4db7c7561e56b8182571a04a73a7e709/solutions/6-conic/images/32-band-aid.png
--------------------------------------------------------------------------------
/solutions/6-conic/images/preview.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ngekoding/cssbattle/de051eab4db7c7561e56b8182571a04a73a7e709/solutions/6-conic/images/preview.png
--------------------------------------------------------------------------------
/solutions/7-backface/33-birdie.md:
--------------------------------------------------------------------------------
1 | # Battle #7 - Backface
2 |
3 | ## #33 - Birdie
4 |
5 | [Link to the problem](https://cssbattle.dev/play/33)
6 |
7 | 
8 |
9 | ```html
10 |
11 |
12 |
46 | ```
--------------------------------------------------------------------------------
/solutions/7-backface/35-ice-cream.md:
--------------------------------------------------------------------------------
1 | # Battle #7 - Backface
2 |
3 | ## #35 - Ice Cream
4 |
5 | [Link to the problem](https://cssbattle.dev/play/35)
6 |
7 | 
8 |
9 | ```html
10 |
11 |
12 |
42 | ```
--------------------------------------------------------------------------------
/solutions/7-backface/36-interleaved.md:
--------------------------------------------------------------------------------
1 | # Battle #7 - Backface
2 |
3 | ## #36 - Interleaved
4 |
5 | [Link to the problem](https://cssbattle.dev/play/36)
6 |
7 | 
8 |
9 | ```html
10 |
11 |
12 |
13 |
14 |
15 |
36 | ```
--------------------------------------------------------------------------------
/solutions/7-backface/37-tunnel.md:
--------------------------------------------------------------------------------
1 | # Battle #7 - Backface
2 |
3 | ## #37 - Tunnel
4 |
5 | [Link to the problem](https://cssbattle.dev/play/37)
6 |
7 | 
8 |
9 | ```html
10 |
11 |
12 |
13 |
40 | ```
--------------------------------------------------------------------------------
/solutions/7-backface/38-not-simply-square.md:
--------------------------------------------------------------------------------
1 | # Battle #7 - Backface
2 |
3 | ## #38 - Not Simple Square
4 |
5 | [Link to the problem](https://cssbattle.dev/play/38)
6 |
7 | 
8 |
9 | ```html
10 |
16 |
56 | ```
--------------------------------------------------------------------------------
/solutions/7-backface/39-sunset.md:
--------------------------------------------------------------------------------
1 | # Battle #7 - Backface
2 |
3 | ## #39 - Sunset
4 |
5 | [Link to the problem](https://cssbattle.dev/play/39)
6 |
7 | 
8 |
9 | ```html
10 |
13 |
18 |
59 | ```
--------------------------------------------------------------------------------
/solutions/7-backface/40-letter-b.md:
--------------------------------------------------------------------------------
1 | # Battle #7 - Backface
2 |
3 | ## #40 - Letter B
4 |
5 | [Link to the problem](https://cssbattle.dev/play/40)
6 |
7 | 
8 |
9 | ```html
10 |
11 |
35 | ```
--------------------------------------------------------------------------------
/solutions/7-backface/41-fox-head.md:
--------------------------------------------------------------------------------
1 | # Battle #7 - Backface
2 |
3 | ## #41 - Fox Head
4 |
5 | [Link to the problem](https://cssbattle.dev/play/41)
6 |
7 | 
8 |
9 | ```html
10 |
13 |
16 |
52 | ```
--------------------------------------------------------------------------------
/solutions/7-backface/images/33-birdie.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ngekoding/cssbattle/de051eab4db7c7561e56b8182571a04a73a7e709/solutions/7-backface/images/33-birdie.png
--------------------------------------------------------------------------------
/solutions/7-backface/images/35-ice-cream.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ngekoding/cssbattle/de051eab4db7c7561e56b8182571a04a73a7e709/solutions/7-backface/images/35-ice-cream.png
--------------------------------------------------------------------------------
/solutions/7-backface/images/36-interleaved.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ngekoding/cssbattle/de051eab4db7c7561e56b8182571a04a73a7e709/solutions/7-backface/images/36-interleaved.png
--------------------------------------------------------------------------------
/solutions/7-backface/images/37-tunnel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ngekoding/cssbattle/de051eab4db7c7561e56b8182571a04a73a7e709/solutions/7-backface/images/37-tunnel.png
--------------------------------------------------------------------------------
/solutions/7-backface/images/38-not-simply-square.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ngekoding/cssbattle/de051eab4db7c7561e56b8182571a04a73a7e709/solutions/7-backface/images/38-not-simply-square.png
--------------------------------------------------------------------------------
/solutions/7-backface/images/39-sunset.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ngekoding/cssbattle/de051eab4db7c7561e56b8182571a04a73a7e709/solutions/7-backface/images/39-sunset.png
--------------------------------------------------------------------------------
/solutions/7-backface/images/40-letter-b.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ngekoding/cssbattle/de051eab4db7c7561e56b8182571a04a73a7e709/solutions/7-backface/images/40-letter-b.png
--------------------------------------------------------------------------------
/solutions/7-backface/images/41-fox-head.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ngekoding/cssbattle/de051eab4db7c7561e56b8182571a04a73a7e709/solutions/7-backface/images/41-fox-head.png
--------------------------------------------------------------------------------
/solutions/7-backface/images/preview.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ngekoding/cssbattle/de051eab4db7c7561e56b8182571a04a73a7e709/solutions/7-backface/images/preview.png
--------------------------------------------------------------------------------
/solutions/8-transition/43-wrench.md:
--------------------------------------------------------------------------------
1 | # Battle #8 - Transition
2 |
3 | ## #43 - Wrench
4 |
5 | [Link to the problem](https://cssbattle.dev/play/43)
6 |
7 | 
8 |
9 | ```html
10 |
11 |
12 |
34 | ```
--------------------------------------------------------------------------------
/solutions/8-transition/44-stripes.md:
--------------------------------------------------------------------------------
1 | # Battle #8 - Transition
2 |
3 | ## #44 - Stripes
4 |
5 | [Link to the problem](https://cssbattle.dev/play/44)
6 |
7 | 
8 |
9 | ```html
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
50 | ```
--------------------------------------------------------------------------------
/solutions/8-transition/images/43-wrench.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ngekoding/cssbattle/de051eab4db7c7561e56b8182571a04a73a7e709/solutions/8-transition/images/43-wrench.png
--------------------------------------------------------------------------------
/solutions/8-transition/images/44-stripes.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ngekoding/cssbattle/de051eab4db7c7561e56b8182571a04a73a7e709/solutions/8-transition/images/44-stripes.png
--------------------------------------------------------------------------------
/solutions/8-transition/images/preview.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ngekoding/cssbattle/de051eab4db7c7561e56b8182571a04a73a7e709/solutions/8-transition/images/preview.png
--------------------------------------------------------------------------------
/solutions/9-margin/46-mountains.md:
--------------------------------------------------------------------------------
1 | # Battle #9 - Margin
2 |
3 | ## #46 - Mountains
4 |
5 | [Link to the problem](https://cssbattle.dev/play/46)
6 |
7 | 
8 |
9 | ```html
10 |
14 |
43 | ```
--------------------------------------------------------------------------------
/solutions/9-margin/images/46-mountains.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ngekoding/cssbattle/de051eab4db7c7561e56b8182571a04a73a7e709/solutions/9-margin/images/46-mountains.png
--------------------------------------------------------------------------------
/solutions/9-margin/images/preview.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ngekoding/cssbattle/de051eab4db7c7561e56b8182571a04a73a7e709/solutions/9-margin/images/preview.png
--------------------------------------------------------------------------------