-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pull requests!!! <3 thanks everyone!
readme updates, downloaded image file name changes
- Loading branch information
Showing
6 changed files
with
131 additions
and
104 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
.container { | ||
position: relative; | ||
} | ||
|
||
.backgroundCanvas { | ||
background-color: #ccc; | ||
} | ||
|
||
.maskPaintCanvas { | ||
border: 3px dotted #993355C0 | ||
} | ||
|
||
.overlayCanvas { | ||
border: 1px solid #F00; | ||
} | ||
|
||
.tempCanvas { | ||
border: 3px dotted #007AFFC0; | ||
} | ||
|
||
.targetCanvas { | ||
border: 2px dashed #0F0; | ||
} | ||
|
||
.canvas { | ||
border: 2px dotted #00F; | ||
} | ||
|
||
.mainHSplit { | ||
display: grid; | ||
grid-template-columns: 1fr; | ||
grid-template-rows: repeat(2, 1fr); | ||
grid-column-gap: 5px; | ||
grid-row-gap: 5px; | ||
} | ||
|
||
.uiWrapper { | ||
display: grid; | ||
grid-template-columns: 1fr 15fr; | ||
grid-template-rows: 1fr; | ||
grid-column-gap: 5px; | ||
grid-row-gap: 5px; | ||
} | ||
|
||
.canvasHolder { | ||
position: relative; | ||
width: 2560px; | ||
height: 1440px; | ||
} | ||
|
||
.mainCanvases { | ||
position: absolute; | ||
top: 0px; | ||
left: 0px; | ||
width: 2560px; | ||
height: 1440px; | ||
} | ||
|
||
.masks { | ||
display: grid; | ||
grid-template-columns: repeat(2, 1fr); | ||
grid-template-rows: 1fr; | ||
grid-column-gap: 0px; | ||
grid-row-gap: 0px; | ||
} | ||
|
||
.maskCanvas { | ||
position: absolute; | ||
} | ||
|
||
.initImgCanvas { | ||
position: absolute; | ||
left: 600px; | ||
} |
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
File renamed without changes.
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 @@ | ||
python -m http.server 3456 |