Skip to content

Commit

Permalink
chore: slow down
Browse files Browse the repository at this point in the history
  • Loading branch information
Copay committed Aug 8, 2019
1 parent 97068e1 commit e82255f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions dist/view.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ export default class CaraokeView extends HTMLElement {
}
#drawer > * {
color: red;
text-shadow: 0 0 0.05em white;
transition: color .1s;
text-shadow: 0 0 0.1em red;
transition: color .5s;
font-size: 5em;
font-family: caraoke-custom-font, "Source Han Serif","STZhongSong","Yu Mincho", serif;
font-weight: 900;
}
#drawer > #pointer ~ * {
color: white;
text-shadow: 0 0 0.05em grey;
text-shadow: 0 0 0.1em grey;
}
`);
this.shadow.appendChild(this.drawer);
Expand Down
6 changes: 3 additions & 3 deletions src/view.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@ export default class CaraokeView extends HTMLElement {
}
#drawer > * {
color: red;
text-shadow: 0 0 0.05em white;
transition: color .1s;
text-shadow: 0 0 0.1em red;
transition: color .5s;
font-size: 5em;
font-family: caraoke-custom-font, "Source Han Serif","STZhongSong","Yu Mincho", serif;
font-weight: 900;
}
#drawer > #pointer ~ * {
color: white;
text-shadow: 0 0 0.05em grey;
text-shadow: 0 0 0.1em grey;
}
`);
this.shadow.appendChild(this.drawer);
Expand Down

0 comments on commit e82255f

Please sign in to comment.