mirror of
https://github.com/stagehacks/Cue-View.git
synced 2026-08-03 21:07:48 +00:00
75 lines
1.2 KiB
CSS
75 lines
1.2 KiB
CSS
table {
|
|
background-color: #141414;
|
|
border: #404040 1px solid;
|
|
border-radius: 4px;
|
|
color: #a59baa;
|
|
}
|
|
th {
|
|
font-size: 14px;
|
|
font-weight: normal;
|
|
padding: 5px;
|
|
}
|
|
td {
|
|
text-align: center;
|
|
padding: 4px 6px;
|
|
}
|
|
td:first-child {
|
|
text-align: left;
|
|
}
|
|
td.black {
|
|
background-color: black;
|
|
border-right: #212021 1px solid;
|
|
}
|
|
td.num {
|
|
color: white;
|
|
font-weight: 600;
|
|
font-size: 16px;
|
|
}
|
|
|
|
.scene {
|
|
background-color: black;
|
|
border-top: #141414 2px solid;
|
|
border-bottom: #141414 2px solid;
|
|
}
|
|
.scene hr {
|
|
border: #001f10 4px solid;
|
|
}
|
|
.scene span {
|
|
display: table;
|
|
margin: 0px auto;
|
|
margin-top: -25px;
|
|
padding: 4px;
|
|
background-color: black;
|
|
font-weight: bold;
|
|
font-size: 14px;
|
|
}
|
|
.time {
|
|
border: #2f2b35 2px solid;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
tr.active-cue {
|
|
color: #c78b07;
|
|
}
|
|
tr.active-cue td.num div {
|
|
margin: 0px;
|
|
padding: 1px 6px;
|
|
background-color: #c78b07;
|
|
border-radius: 4px;
|
|
color: black;
|
|
}
|
|
tr.active-cue .time {
|
|
border-color: #c78b07;
|
|
}
|
|
|
|
@media screen and (min-width: 0px) and (max-width: 750px) {
|
|
.hide-medium {
|
|
display: none;
|
|
}
|
|
}
|
|
@media screen and (min-width: 0px) and (max-width: 550px) {
|
|
.hide-small {
|
|
display: none;
|
|
}
|
|
}
|