2022-07-08 23:20:22 +03:00
|
|
|
.root {
|
2022-07-08 10:10:18 +03:00
|
|
|
position: relative;
|
|
|
|
display: grid;
|
|
|
|
}
|
|
|
|
|
|
|
|
.buttonsLogoTitleSection {
|
|
|
|
margin-left: 1.5vw;
|
|
|
|
margin-right: 1.5vw;
|
|
|
|
}
|
|
|
|
|
|
|
|
.logoTitleSection {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.titleSection {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
.title {
|
|
|
|
font-size: 1.5rem;
|
|
|
|
font-weight: bold;
|
|
|
|
color: var(--theme-text-primary);
|
|
|
|
}
|
|
|
|
|
|
|
|
.subtitle {
|
2022-07-11 02:42:35 +03:00
|
|
|
margin-top: 0.35em;
|
|
|
|
font-size: 1.5em;
|
|
|
|
font-weight: 300;
|
|
|
|
color: var(--theme-text-secondary);
|
|
|
|
text-transform: uppercase;
|
2022-07-08 10:10:18 +03:00
|
|
|
}
|
|
|
|
}
|
2022-07-08 23:20:22 +03:00
|
|
|
|
|
|
|
.mobile {
|
|
|
|
&.root {
|
|
|
|
position: relative;
|
|
|
|
display: flex;
|
2022-07-11 02:42:35 +03:00
|
|
|
padding: 0 0.3rem;
|
2022-07-08 23:20:22 +03:00
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
.mobileInfo {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
.title {
|
|
|
|
font-size: 1.2rem;
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.mobileStatus {
|
|
|
|
display: flex;
|
|
|
|
font-weight: 600;
|
|
|
|
.viewerCount {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
gap: 4px;
|
|
|
|
}
|
|
|
|
.liveStatus {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2022-07-11 02:42:35 +03:00
|
|
|
margin-left: 0.5rem;
|
|
|
|
font-size: 0.8rem;
|
2022-07-08 23:20:22 +03:00
|
|
|
gap: 4px;
|
|
|
|
.liveCircle {
|
|
|
|
border-radius: 50%;
|
|
|
|
background-color: red;
|
2022-07-11 02:42:35 +03:00
|
|
|
width: 0.5rem;
|
|
|
|
height: 0.5rem;
|
2022-07-08 23:20:22 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-11 02:42:35 +03:00
|
|
|
.tagList {
|
|
|
|
font-family: var(--theme-text-display-font-family);
|
|
|
|
color: var(--theme-text-secondary);
|
|
|
|
|
|
|
|
ul {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
li {
|
|
|
|
display: inline-block;
|
|
|
|
margin: 0 0.7em 0 0;
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
}
|