Skip to content

Commit

Permalink
Update repository
Browse files Browse the repository at this point in the history
  • Loading branch information
rachelpizane committed Jan 13, 2024
1 parent 7c04dba commit 5fe53e0
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 2 deletions.
13 changes: 11 additions & 2 deletions README.md
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)
24 changes: 24 additions & 0 deletions Solutions/1 - Pilot Battle/1 - Simply Square.md
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.

0 comments on commit 5fe53e0

Please sign in to comment.