/**************************************************************************************************************** * /chanview/chanview.css * * CSS styling for things specific to the channel-viewer application ****************************************************************************************************************/ .channel-list { font-size: 16px; color: black; } .channel-list.error { background-color: red; } .channel-list.warning { background-color: yellow; } .channel-list.selected { background-color: lightcoral; } table.channel-list { border-collapse: collapse; border: 1px solid black; margin: 0 auto; } table.channel-list tr { background-color: cyan; text-align: center; } table.channel-list th { border: 1px solid black; padding: 5px 10px; text-align: center; } table.channel-list td { border: 1px solid black; padding: 5px 10px; cursor: pointer; } h2.channel-list { margin: 0; padding: 4px 10px; text-align: center; font-size: 32px; } video { position: absolute; max-width: 100%; max-height: 100%; width: auto; height: auto; left: 50%; transform: translateX(-50%); border: 5px solid yellow; /* position: relative; min-width: 100%; min-height: 100%; margin: 12px; */ } h2 { margin: 0; padding: 4px 10px; } 