Skip to content

Commit

Permalink
Merge pull request #16 from Denpex/master
Browse files Browse the repository at this point in the history
Separation of colors
  • Loading branch information
topshef authored Nov 2, 2020
2 parents 3866896 + 3717c2f commit 0fb05c4
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions mediumclap/blackbackground/coin3.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
:root {
--background-color: black;
--particle-color: red;
--particle-square-color: turquoise;
--main-color: #0000ff;
--counter-color: #0000ff;
--coin-color: white;
--coin-hover-border-color: red;
--coin-hover-color: lightblue;

--particle-opacity: 1;
}
Expand Down Expand Up @@ -45,21 +50,20 @@ body {
border: 1px solid rgba(0, 0, 0, 0.15);
border-radius: 50%;
z-index: 2;
background: #fff;
background: var(--coin-color);
cursor: pointer;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
-webkit-tap-highlight-color: transparent;
}

.canvas .clap-container .clap-icon {
font-size: 30px;
color: var(--main-color);
width: 30px;
height: 30px;
}

.canvas .clap-container:hover {
border: 1px solid var(--main-color);
border: 1px solid var(--coin-hover-border-color);
}

.canvas .clap-container.scale {
Expand All @@ -74,7 +78,7 @@ body {
height: 35px;
position: absolute;
top: 132px;
background-color: var(--main-color);
background-color: var(--counter-color);
border-radius: 50%;
z-index: 1;
}
Expand All @@ -96,7 +100,7 @@ body {
.canvas .clap-container-sonar {
width: 60px;
height: 60px;
background: var(--main-color);
background: var(--coin-hover-color);
border-radius: 50%;
position: absolute;
opacity: 0;
Expand Down Expand Up @@ -127,7 +131,7 @@ body {
.canvas .particles-container .triangle .square {
width: 5px;
height: 5px;
background: var(--main-color);
background: var(--particle-square-color);
position: absolute;
left: -15px;
top: 0;
Expand Down

1 comment on commit 0fb05c4

@topshef
Copy link
Owner Author

@topshef topshef commented on 0fb05c4 Nov 2, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

feeds #13

Please sign in to comment.