-
-
Notifications
You must be signed in to change notification settings - Fork 131
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Level 3 content: Space Invaders + More! (#7325)
* Add spot checker * Remove unused code (#7327) * Remove main functions * Add function use detectors * Finish off exercise * Add laser * Fix nested ands * Progress * Progress * Add new images * Add more instructions * Finish space invaders * Add digital clock exercise * Add if and rock-paper-scissors * Add rock paper sciissors * Improve exercises * Add instructions * Add more rbs images * Add rps description * Overflow-auto pre tag in instructions (#7345) * Parse md of errors * Improve error handling * Add rainbow ball * Improve maze * Add more interesting looking mazes * Don't wait for timeline completion if the timeline doesn't exist (#7346) * Show last test if all tests pass (#7347) * Fix tests * Add annotations for if statements * Update descriptions --------- Co-authored-by: Aron Demeter <[email protected]> Co-authored-by: dem4ron <[email protected]>
- Loading branch information
1 parent
6ecc928
commit 5de55da
Showing
137 changed files
with
2,969 additions
and
246 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
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
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
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
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
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
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,48 @@ | ||
#bootcamp-solve-exercise-page { | ||
.exercise-digital-clock { | ||
background-image: url("bootcamp/assets/digital-clock/background.png"); | ||
background-size: cover; | ||
position: relative; | ||
container-type: size; | ||
|
||
.time, | ||
.meridiem { | ||
font-family: "DSDigital"; | ||
color: #ec1d26; | ||
position: absolute; | ||
font-weight: bold; | ||
} | ||
.time { | ||
top: 32%; | ||
left: 14%; | ||
text-align: center; | ||
font-size: 26cqw; | ||
letter-spacing: 1cqw; | ||
@apply grid; | ||
grid-template-columns: 3fr 1fr 3fr; | ||
|
||
.hour, | ||
.minute { | ||
@apply grid grid-cols-2; | ||
} | ||
|
||
.h1, | ||
.h2, | ||
.m1, | ||
.m2 { | ||
@apply text-right; | ||
} | ||
} | ||
.meridiem { | ||
font-size: 8cqw; | ||
letter-spacing: 1cqw; | ||
right: 10%; | ||
&.am { | ||
top: 36%; | ||
} | ||
&.pm { | ||
top: 46%; | ||
} | ||
} | ||
} | ||
} |
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
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
Oops, something went wrong.