mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-07 16:33:51 +00:00
56 lines
764 B
CSS
56 lines
764 B
CSS
.mainContainer {
|
|
width: 100%;
|
|
display: flex;
|
|
margin: 0 auto;
|
|
flex-direction: column;
|
|
gap: 5px;
|
|
}
|
|
|
|
.timeContainer,
|
|
.playbackContainer {
|
|
background-color: rgba(0, 0, 0, 0.05);
|
|
border: 1px solid rgba(0, 0, 0, 0.05);
|
|
border-radius: 4px;
|
|
padding: 0.5em;
|
|
}
|
|
|
|
.timeContainer {
|
|
display: grid;
|
|
grid-template-areas:
|
|
'clk clk ...'
|
|
'sta fin ...';
|
|
grid-template-rows: 1fr auto;
|
|
grid-template-columns: 1fr 1fr 80px;
|
|
gap: 5px;
|
|
justify-items: start;
|
|
}
|
|
|
|
.timer {
|
|
grid-area: clk;
|
|
}
|
|
|
|
.start {
|
|
grid-area: sta;
|
|
}
|
|
|
|
.finish {
|
|
grid-area: fin;
|
|
}
|
|
|
|
.time {
|
|
color: #ccc;
|
|
font-size: 1.1em;
|
|
}
|
|
|
|
.tag {
|
|
color: #aaa;
|
|
font-size: 0.9em;
|
|
}
|
|
|
|
.playbackContainer {
|
|
display: flex;
|
|
justify-content: space-evenly;
|
|
padding-top: 0.5em;
|
|
gap: 10px;
|
|
}
|