Skip to content

Commit

Permalink
Really important rounding of corners.
Browse files Browse the repository at this point in the history
  • Loading branch information
brendandahl committed May 24, 2012
1 parent 71af4ad commit 852b1a8
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
8 changes: 8 additions & 0 deletions public/css/app.css
Expand Up @@ -143,6 +143,14 @@ footer {
}
.playlist li:last-child {
border-bottom: 0;
-webkit-border-radius: 0 0 5px 5px;
-moz-border-radius: 0 0 5px 5px;
border-radius: 0 0 5px 5px;
}
.playlist li:first-child {
-webkit-border-radius: 5px 5px 0 0;
-moz-border-radius: 5px 5px 0 0;
border-radius: 5px 5px 0 0;
}
.playlist li[data-state="paused"] .play {
display: inline-block;
Expand Down
7 changes: 6 additions & 1 deletion public/css/app.styl
Expand Up @@ -135,7 +135,12 @@ footer
box-shadow 0 0 6px rgba(0,0,0,0.5)

&:last-child
border-bottom 0
border-bottom 0
border-radius 0 0 5px 5px

&:first-child
border-radius 5px 5px 0 0


&[data-state="paused"]
.play
Expand Down

0 comments on commit 852b1a8

Please sign in to comment.