Skip to content

Commit

Permalink
Site updated: 2024-05-30 19:58:04
Browse files Browse the repository at this point in the history
  • Loading branch information
levi52 committed May 30, 2024
1 parent 46609d5 commit d3be45e
Show file tree
Hide file tree
Showing 9 changed files with 1,933 additions and 6 deletions.
2 changes: 1 addition & 1 deletion css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -1465,7 +1465,7 @@ pre code {
vertical-align: middle;
}
.links-of-author a::before {
background: #ff01ff;
background: #e8fa91;
display: inline-block;
margin-right: 3px;
transform: translateY(-2px);
Expand Down
418 changes: 418 additions & 0 deletions html/ColorPicker/Color.html

Large diffs are not rendered by default.

61 changes: 61 additions & 0 deletions html/ColorPicker/main.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
*
{
padding: 0;
margin: 0;
box-sizing: border-box;
}
.picker
{
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 100vh;
background-color: aqua;
}
.picker_box
{
width: 550px;
padding: 20px;
border: 4px solid;
border-radius: 12px;
background-color: rgba(255, 255, 255, 0.6);
box-shadow: 5px 5px rgba(0, 0, 0, 0.6);
}
.picker_title
{
font-size: 30px;
font-weight: bold;
text-align: center;
letter-spacing: 2px;
text-transform: uppercase;
padding-bottom: 20px;
}
.picker_inputs
{
display: flex;
justify-content: center;
align-items: center;
gap: 25px;
}
.picker_input
{
display: block;
height: 30px;
border: 2px solid;
border-radius: 5px;
padding: 1px;
}
.picker_input--output
{
text-align: center;
font-size: 15px;
font-weight: bold;

}
.coder
{
font-size:20px;
margin-top: 20px;
text-align: right;
}
Loading

0 comments on commit d3be45e

Please sign in to comment.