You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
971 B
62 lines
971 B
@import '../../../styles/mixins.scss'; |
|
|
|
.outerContainer { |
|
display: flex; |
|
justify-content: center; |
|
align-items: center; |
|
} |
|
|
|
.innerContainer { |
|
width: clamp(00px, 100%, 600px); |
|
display: flex; |
|
flex-direction: column; |
|
margin: 5vh auto; |
|
padding: 2.4em; |
|
|
|
@include screen(tablet) { |
|
font-size: 1.2rem; |
|
padding: 1em; |
|
margin: 1rem 0.2rem; |
|
} |
|
} |
|
|
|
.bodyText { |
|
line-height: 2rem; |
|
font-size: 1.2rem; |
|
} |
|
|
|
.separator { |
|
margin-top: 15px; |
|
margin-bottom: 15px; |
|
} |
|
|
|
.lastLiveDate { |
|
margin-top: 2rem; |
|
font-size: 0.8rem; |
|
opacity: 0.7; |
|
font-family: var(--theme-text-body-font-family); |
|
font-weight: 300; |
|
|
|
.clockIcon { |
|
margin-right: 6px; |
|
} |
|
} |
|
|
|
.header { |
|
font-family: var(--theme-text-display-font-family); |
|
font-weight: 600; |
|
font-size: 1.4rem; |
|
} |
|
|
|
.footer { |
|
margin-top: 15px; |
|
} |
|
|
|
.actionLink { |
|
color: var(--theme-color-action); |
|
text-decoration: underline; |
|
cursor: pointer; |
|
&:hover { |
|
color: var(--color-owncast-palette-7); |
|
} |
|
}
|
|
|