50 lines
658 B
Sass
Executable File
50 lines
658 B
Sass
Executable File
#music-header
|
|
text-align: center
|
|
|
|
h1
|
|
color: white
|
|
font:
|
|
size: 34px
|
|
weight: bold
|
|
|
|
//#music-player
|
|
|
|
#music-list-section
|
|
.music-list
|
|
position: relative
|
|
+transition(background, 200ms)
|
|
|
|
&:hover
|
|
cursor: pointer
|
|
background: #f0f0f0
|
|
|
|
.music-list-header
|
|
margin: 10px 0
|
|
|
|
.now-playing-list,
|
|
.music-list ol
|
|
margin-left: 15px
|
|
margin-right: 15px
|
|
color: $text-color
|
|
|
|
li
|
|
+transition(background, 200ms)
|
|
|
|
&:hover
|
|
background: #f0f0f0
|
|
|
|
a
|
|
color: $main-color
|
|
|
|
&.selected
|
|
background: #e0e0e0
|
|
|
|
li,
|
|
a
|
|
display: block
|
|
+size(100% 100%)
|
|
padding: 8px 5px
|
|
color: $text-color
|
|
text-decoration: none
|
|
+transition(color, 200ms)
|