Skip to content

Commit

Permalink
fix: correct indentation in style.css
Browse files Browse the repository at this point in the history
  • Loading branch information
timbru31 committed Dec 14, 2016
1 parent ae8cd5f commit 5dbfd0f
Showing 1 changed file with 26 additions and 26 deletions.
52 changes: 26 additions & 26 deletions css/style.css
@@ -1,40 +1,40 @@
.amazon-tag-remover {
background: #2C3539;
border: 2px solid #fff;
border-radius: 5px;
bottom: 15px;
box-shadow: 0 0 20px #000;
color: #fff;
padding: 7px 10px;
position: fixed;
right: 20px;
z-index: 50;
background: #2C3539;
border: 2px solid #fff;
border-radius: 5px;
bottom: 15px;
box-shadow: 0 0 20px #000;
color: #fff;
padding: 7px 10px;
position: fixed;
right: 20px;
z-index: 50;
}

.amazon-tag-remover-fade-in {
animation: fadein 2s;
opacity: 1;
animation: fadein 2s;
opacity: 1;
}

.amazon-tag-remover-fade-out {
animation: fadeout 2s;
opacity: 0;
animation: fadeout 2s;
opacity: 0;
}

@keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
from {
opacity: 0;
}
to {
opacity: 1;
}
}

@keyframes fadeout {
from {
opacity: 1;
}
to {
opacity: 0;
}
from {
opacity: 1;
}
to {
opacity: 0;
}
}

0 comments on commit 5dbfd0f

Please sign in to comment.