Files
jav-play/entrypoints/content/style.css

28 lines
670 B
CSS

.wxt-player-button {
/* 定位和层级 */
position: fixed;
/* 'top' 属性现在通过内联样式设置 */
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);
}