-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7c04dba
commit 5fe53e0
Showing
5 changed files
with
35 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,11 @@ | ||
# CSSBattle | ||
Battle #1 - Pilot Battle | ||
# ⚔️ CSS Battle Challenge Solutions ⚔️ | ||
|
||
[CSSBattle](https://cssbattle.dev/) is an online CSS Code Golfing game. A great way to train your CSS skills. | ||
|
||
Here you will find my solutions to some CSSBattle challenges. | ||
|
||
## Battle #1 - Pilot Battle | ||
|
||
[#1 - Simply Square](Solutions/1%20-%20Pilot%20Battle/1%20-%20Simply%20Square.md) | ||
[#2 - Carrom](Solutions/1%20-%20Pilot%20Battle/2%20-%20Carrom.md) | ||
[#3 - Push Button](Solutions/1%20-%20Pilot%20Battle/3%20-%20Push%20Button.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Simply Square | ||
## 📸 Image | ||
![](img/1%20-%20Simply%20Square.png) | ||
|
||
## 🔎 Link | ||
[Try too and got to the battle!](https://cssbattle.dev/play/1) | ||
|
||
## 💡 Solution | ||
``` | ||
<div></div> | ||
<style> | ||
body { | ||
margin: 0px; | ||
background: #5d3a3a; | ||
} | ||
div { | ||
width: 200px; | ||
height: 200px; | ||
background: #b5e0ba; | ||
} | ||
</style> | ||
``` |
Empty file.
Empty file.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.