/usr/share/xul-ext/video-without-flash/skin/player.css is in xul-ext-video-without-flash 3.1.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 | .vwof_player {
position:relative;
width: 100%;
height: 100%;
border: 1px #000;
background-color: #000;
background-size: 100%;
background-repeat: no-repeat;
background-size: contain;
background-position: center top;
display:block;
cursor:pointer;
z-index:1;
text-align:left;
vertical-align:top;
opacity:0.8;
box-shadow: 0 5px 10px #222;
}
.vwof_player:hover{
opacity:1.0;
transition:.2s;
}
.vwof_video_info, .vwof_player span, .vwof_player a{
background-color:rgba(2,2,2,0.8);
text-shadow: 1em 1em 5em black;
box-shadow: 0 5px 10px #222;
}
.vwof_player span, .vwof_player a{
position:absolute;
font-family:white,bold;
font:16px bold;
color:white;
font-weight: bold;
margin-top: 8px;
margin-right:5px;
}
.vwof_player a{
text-decoration: underline;
top:5px;
right:5px;
}
.vwof_player a:hover {
color:#88AAFF;
transition:.5s;
}
.vwof_video_info{
vertical-align:top;
margin-top:8px;
margin-left:2px;
padding: 5px;
font-size: 16px;
line-height: 1;
border: 0;
border-radius: 0.2;
color: #FFF;
}
|