27 lines
697 B
CSS
27 lines
697 B
CSS
.wxt-player-button {
|
|
/* 定位和层级 */
|
|
position: fixed;
|
|
right: 0px;
|
|
z-index: 9999;
|
|
|
|
/* 外观和布局 */
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 5px;
|
|
background-color: #3173dc; /* 播放器按钮使用蓝色 */
|
|
color: white;
|
|
padding: 5px 10px;
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
text-decoration: none;
|
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
|
|
|
|
/* 交互效果 */
|
|
cursor: pointer;
|
|
transition: transform 0.2s ease-in-out, background-color 0.2s ease;
|
|
}
|
|
|
|
.wxt-player-button:hover {
|
|
transform: scale(1.05);
|
|
} |