Skip to content

Commit

Permalink
Merge pull request #1 from DonLars/triangle
Browse files Browse the repository at this point in the history
feat: add yellow triangle and some comments
  • Loading branch information
IrisEnyo authored Oct 11, 2023
2 parents b7538bc + 8265977 commit d60c793
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions katas/geometric-art/style.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
/* Border
========================================================================== */

.outer {
border: 3px solid #000;
background: #aaa;
Expand All @@ -7,6 +10,9 @@
position: relative;
}

/* White Space Background
========================================================================== */

.inner {
background: #fff;
position: absolute;
Expand All @@ -16,6 +22,9 @@
height: 72vw;
}

/* Stripes with gradient
========================================================================== */

.inner::before {
content: "";
position: absolute;
Expand Down Expand Up @@ -68,3 +77,20 @@
width: 45vw;
height: 45vw;
}

/* Triangle in Background
========================================================================== */

.triangle {
background: transparent;
position: absolute;
z-index: 0;
width: 0px;
height: 0px;
top: 9vw;
left: 9vw;
transform: rotate(360deg);
border-style: solid;
border-width: 45vw 45vw 0 0;
border-color: yellow transparent transparent transparent;
}
Binary file added katas/result/assets/bolz.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added katas/result/assets/brain.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added katas/result/assets/comment.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added katas/result/assets/eye.png
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 d60c793

Please sign in to comment.