-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Style adding new palettes and individual palettes
- Loading branch information
1 parent
b44c891
commit 1cc52c7
Showing
4 changed files
with
63 additions
and
15 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
#palettes { | ||
color: white; | ||
} | ||
|
||
#palettes_div { | ||
display: flex; | ||
flex-wrap: wrap; | ||
padding: 3%; | ||
width: 70%; | ||
} | ||
|
||
#add_new_palette { | ||
width: 69%; | ||
padding: 1% 3% 3% 3%; | ||
background-color: rgba(0, 0, 0, 0.6); | ||
border-radius: 10px; | ||
} | ||
|
||
.input_palette { | ||
border: 1px solid black; | ||
height: 40px; | ||
border-radius: 15px 0 0 15px; | ||
} | ||
|
||
.input_palette-btn { | ||
border: 1px solid black; | ||
width: 35px; | ||
height: 43px; | ||
border-radius: 0 15px 15px 0; | ||
} | ||
|
||
.input_palette-btn:hover { | ||
background-color: darkolivegreen; | ||
color: white; | ||
transform: scale(1.1); | ||
} |
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