34 lines
446 B
Sass
Executable File
34 lines
446 B
Sass
Executable File
#music-list-section
|
|
.now-playing-list
|
|
margin-left: 15px
|
|
margin-right: 15px
|
|
color: $text-color
|
|
|
|
li,
|
|
a
|
|
color: $text-color
|
|
text-decoration: none
|
|
|
|
&:hover
|
|
color: $main-color
|
|
|
|
.music-list
|
|
position: relative
|
|
+transition(all, 300ms)
|
|
|
|
&:hover
|
|
cursor: pointer
|
|
background: #f0f0f0
|
|
|
|
ol
|
|
color: $text-color
|
|
|
|
li,
|
|
a
|
|
color: $text-color
|
|
|
|
&:hover
|
|
color: $main-color
|
|
|
|
.music-list-header
|
|
margin: 10px 0 |