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.
53 lines
852 B
53 lines
852 B
.outerContainer { |
|
display: flex; |
|
justify-content: center; |
|
} |
|
|
|
.innerContainer { |
|
width: clamp(00px, 100%, 600px); |
|
display: flex; |
|
flex-direction: column; |
|
color: var(--theme-color-components-text-on-light); |
|
background-color: var(--theme-color-background-main); |
|
margin: 1rem auto; |
|
border-radius: var(--theme-rounded-corners); |
|
padding: 1rem; |
|
font-size: 1.2rem; |
|
border: 1px solid lightgray; |
|
} |
|
|
|
.bodyText { |
|
line-height: 1.5rem; |
|
} |
|
|
|
.separator { |
|
margin-top: 15px; |
|
margin-bottom: 15px; |
|
} |
|
|
|
.lastLiveDate { |
|
margin-top: 15px; |
|
font-size: 1rem; |
|
opacity: 0.5; |
|
|
|
.clockIcon { |
|
margin-right: 5px; |
|
} |
|
} |
|
|
|
.header { |
|
font-weight: bold; |
|
} |
|
|
|
.footer { |
|
margin-top: 15px; |
|
} |
|
|
|
.actionLink { |
|
color: var(--theme-color-action); |
|
text-decoration: underline; |
|
cursor: pointer; |
|
&:hover { |
|
color: var(--color-owncast-palette-7); |
|
} |
|
}
|
|
|