Created
January 19, 2022 13:32
-
-
Save blockworks/f34ebbc2cba0fc9b269d83fbf42fc544 to your computer and use it in GitHub Desktop.
ytlive-reservation スタイル v2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body { | |
background-color: rgba(0, 0, 0, 0); | |
margin: 0px auto; | |
overflow: hidden; | |
} | |
#app ul{ | |
margin: 5px 0 0 5px; | |
display: flex; | |
font-weight: bold; | |
line-height: 1.2; | |
} | |
#app ul li{ | |
font-size: 16px; | |
border-radius: 4px; | |
width: auto; | |
padding: 5px; | |
margin: 0 5px 0 0; | |
white-space: nowrap; | |
overflow: hidden; | |
text-overflow: ellipsis; | |
-webkit-text-overflow: ellipsis; | |
-o-text-overflow: ellipsis; | |
} | |
#app ul li .number{ | |
margin: 0 5px 0 0; | |
} | |
#app ul li img { | |
display: none; | |
/* width: 16px; */ | |
/* margin-right: 5px; */ | |
} | |
#app ul li.playing{ | |
background-color: #d9a625; | |
color: #333; | |
} | |
#app ul li.standby{ | |
background-color: #555; | |
color: #fff; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment