mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-10 18:03:47 +00:00
db0eee3b9c
* chore: upgrade dependencies * feat/mac: draft pipeline * feat/mac: use public folder for transient files * feat/mac: set app fullscreen * feat/mac: cmd + , toggles menu * feat/mac: update readme * refact: easier login process * refact prevent style issues with safari * refact reduce css download * style: cleanup paginator design * style: studio clock is responsive * style: fix spacing style issues with safari
55 lines
656 B
SCSS
55 lines
656 B
SCSS
@use '../../../styles/main' as *;
|
|
|
|
.label {
|
|
@include card-label;
|
|
}
|
|
|
|
.nowTitle,
|
|
.nextTitle {
|
|
@include card-title;
|
|
}
|
|
|
|
.nowSubtitle,
|
|
.nowPresenter,
|
|
.nextSubtitle,
|
|
.nextPresenter {
|
|
color: $subtitle-gray;
|
|
}
|
|
|
|
.nowTitle {
|
|
font-size: 2.5vw;
|
|
}
|
|
|
|
.nowPresenter {
|
|
font-size: 2vw;
|
|
font-weight: 400;
|
|
}
|
|
|
|
.nowSubtitle {
|
|
font-size: 1.2vw;
|
|
margin-top: -1vh;
|
|
}
|
|
|
|
.nextTitle {
|
|
font-size: 2vw;
|
|
}
|
|
|
|
.nextSubtitle {
|
|
margin-top: -0.8vh;
|
|
font-size: 1.1vw;
|
|
}
|
|
|
|
.nextPresenter {
|
|
font-weight: 400;
|
|
font-size: 1.5vw;
|
|
}
|
|
|
|
.nowTitle:after,
|
|
.nowSubtitle:after,
|
|
.nowPresenter:after,
|
|
.nextTitle:after,
|
|
.nextSubtitle:after,
|
|
.nextPresenter:after {
|
|
content: '\200b';
|
|
}
|