445 lines
8.9 KiB
SCSS
445 lines
8.9 KiB
SCSS
.DetailsWrapper {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: $unit-2x;
|
|
margin: $unit-4x auto 0 auto;
|
|
max-width: $grid-width;
|
|
|
|
@include breakpoint(phone) {
|
|
.Button:not(.IconButton) {
|
|
justify-content: center;
|
|
width: 100%;
|
|
|
|
.Text {
|
|
width: auto;
|
|
}
|
|
}
|
|
}
|
|
|
|
.PartyDetails {
|
|
box-sizing: border-box;
|
|
display: none;
|
|
margin: 0 auto $unit-2x;
|
|
max-width: $unit * 94;
|
|
overflow: hidden;
|
|
width: 100%;
|
|
|
|
@include breakpoint(phone) {
|
|
padding: 0 $unit;
|
|
}
|
|
|
|
&.Visible {
|
|
// margin-bottom: $unit-12x;
|
|
}
|
|
|
|
&.Editable {
|
|
gap: $unit;
|
|
|
|
&.Visible {
|
|
display: grid;
|
|
}
|
|
|
|
fieldset {
|
|
display: block;
|
|
width: 100%;
|
|
|
|
textarea {
|
|
min-height: $unit * 22;
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
.SelectTrigger {
|
|
padding: $unit-2x;
|
|
width: 100%;
|
|
}
|
|
|
|
.DetailToggleGroup {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr 1fr;
|
|
gap: $unit;
|
|
|
|
@include breakpoint(phone) {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.ToggleSection,
|
|
.InputSection {
|
|
align-items: center;
|
|
display: flex;
|
|
background: var(--card-bg);
|
|
border-radius: $input-corner;
|
|
|
|
& > label {
|
|
align-items: center;
|
|
display: flex;
|
|
font-size: $font-regular;
|
|
gap: $unit;
|
|
grid-template-columns: 2fr 1fr;
|
|
justify-content: space-between;
|
|
width: 100%;
|
|
|
|
& > span {
|
|
flex-grow: 1;
|
|
}
|
|
}
|
|
}
|
|
|
|
.ToggleSection {
|
|
padding: ($unit * 1.5) $unit-2x;
|
|
}
|
|
|
|
.InputSection {
|
|
padding: $unit-half $unit-2x;
|
|
padding-right: $unit-half;
|
|
|
|
.Input {
|
|
border-radius: 7px;
|
|
}
|
|
|
|
div.Input {
|
|
align-items: center;
|
|
border: 2px solid transparent;
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
padding: $unit;
|
|
|
|
&:has(> input:focus) {
|
|
border: 2px solid $blue;
|
|
outline: none;
|
|
}
|
|
|
|
& > input {
|
|
background: transparent;
|
|
border: none;
|
|
padding: $unit 0;
|
|
text-align: right;
|
|
width: 2rem;
|
|
|
|
&:focus {
|
|
outline: none;
|
|
border: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
label {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
|
|
span {
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.Input {
|
|
border-radius: 7px;
|
|
max-width: 10rem;
|
|
}
|
|
|
|
div {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: $unit-half;
|
|
justify-content: right;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.bottom {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: $unit;
|
|
|
|
@include breakpoint(phone) {
|
|
flex-direction: column;
|
|
width: 100%;
|
|
}
|
|
|
|
.left {
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.right {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: $unit;
|
|
|
|
@include breakpoint(phone) {
|
|
.Button {
|
|
flex-grow: 1;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
&.ReadOnly {
|
|
box-sizing: border-box;
|
|
line-height: 1.4;
|
|
white-space: pre-wrap;
|
|
|
|
&.Visible {
|
|
display: block;
|
|
}
|
|
|
|
a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
p {
|
|
font-size: $font-regular;
|
|
line-height: $font-regular * 1.2;
|
|
white-space: pre-line;
|
|
}
|
|
|
|
.Details {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
gap: $unit;
|
|
margin-bottom: $unit-2x;
|
|
}
|
|
|
|
.YoutubeWrapper {
|
|
background-color: var(--card-bg);
|
|
border-radius: $card-corner;
|
|
margin: $unit 0;
|
|
position: relative;
|
|
display: block;
|
|
contain: content;
|
|
background-position: center center;
|
|
background-size: cover;
|
|
cursor: pointer;
|
|
width: 60%;
|
|
height: 60%;
|
|
|
|
@include breakpoint(tablet) {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
/* gradient */
|
|
&::before {
|
|
content: '';
|
|
display: block;
|
|
position: absolute;
|
|
top: 0;
|
|
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAADGCAYAAAAT+OqFAAAAdklEQVQoz42QQQ7AIAgEF/T/D+kbq/RWAlnQyyazA4aoAB4FsBSA/bFjuF1EOL7VbrIrBuusmrt4ZZORfb6ehbWdnRHEIiITaEUKa5EJqUakRSaEYBJSCY2dEstQY7AuxahwXFrvZmWl2rh4JZ07z9dLtesfNj5q0FU3A5ObbwAAAABJRU5ErkJggg==);
|
|
background-position: top;
|
|
background-repeat: repeat-x;
|
|
height: 60px;
|
|
padding-bottom: 50px;
|
|
width: 100%;
|
|
transition: all 0.2s cubic-bezier(0, 0, 0.2, 1);
|
|
}
|
|
|
|
/* responsive iframe with a 16:9 aspect ratio
|
|
thanks https://css-tricks.com/responsive-iframes/
|
|
*/
|
|
&::after {
|
|
content: '';
|
|
display: block;
|
|
padding-bottom: calc(100% / (16 / 9));
|
|
}
|
|
|
|
&:hover > .PlayerButton {
|
|
opacity: 1;
|
|
}
|
|
|
|
& > iframe {
|
|
width: 100%;
|
|
height: 100%;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
}
|
|
|
|
/* Play button */
|
|
& > .PlayerButton {
|
|
background: none;
|
|
border: none;
|
|
background-image: url('/icons/youtube.svg');
|
|
width: 68px;
|
|
height: 68px;
|
|
opacity: 0.8;
|
|
transition: all 0.2s cubic-bezier(0, 0, 0.2, 1);
|
|
}
|
|
|
|
& > .PlayerButton,
|
|
& > .PlayerButton:before {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate3d(-50%, -50%, 0);
|
|
}
|
|
|
|
/* Post-click styles */
|
|
&.lyt-activated {
|
|
cursor: unset;
|
|
}
|
|
&.lyt-activated::before,
|
|
&.lyt-activated > .PlayerButton {
|
|
opacity: 0;
|
|
pointer-events: none;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.PartyInfo {
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: $unit;
|
|
margin: 0 auto;
|
|
max-width: $unit * 94;
|
|
width: 100%;
|
|
|
|
@include breakpoint(phone) {
|
|
flex-direction: column;
|
|
gap: $unit;
|
|
padding: 0 $unit;
|
|
}
|
|
|
|
& > .Left {
|
|
flex-grow: 1;
|
|
|
|
.Header {
|
|
align-items: center;
|
|
display: flex;
|
|
gap: $unit;
|
|
margin-bottom: $unit;
|
|
|
|
h1 {
|
|
font-size: $font-xlarge;
|
|
font-weight: $normal;
|
|
text-align: left;
|
|
color: var(--text-primary);
|
|
|
|
&.empty {
|
|
color: var(--text-secondary);
|
|
}
|
|
}
|
|
}
|
|
|
|
.attribution {
|
|
align-items: center;
|
|
display: flex;
|
|
flex-direction: row;
|
|
|
|
& > div {
|
|
align-items: center;
|
|
display: inline-flex;
|
|
font-size: $font-small;
|
|
height: 26px;
|
|
}
|
|
|
|
time {
|
|
font-size: $font-small;
|
|
}
|
|
|
|
a:visited:not(.fire):not(.water):not(.wind):not(.earth):not(.dark):not(
|
|
.light
|
|
) {
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
a:hover:not(.fire):not(.water):not(.wind):not(.earth):not(.dark):not(
|
|
.light
|
|
) {
|
|
color: $blue;
|
|
}
|
|
|
|
& > *:not(:last-child):after {
|
|
content: ' · ';
|
|
margin: 0 calc($unit / 2);
|
|
}
|
|
}
|
|
}
|
|
|
|
.user {
|
|
align-items: center;
|
|
display: inline-flex;
|
|
gap: calc($unit / 2);
|
|
margin-top: 1px;
|
|
|
|
img,
|
|
.no-user {
|
|
$diameter: 24px;
|
|
|
|
border-radius: calc($diameter / 2);
|
|
height: $diameter;
|
|
width: $diameter;
|
|
}
|
|
|
|
img.gran {
|
|
background-color: #cee7fe;
|
|
}
|
|
|
|
img.djeeta {
|
|
background-color: #ffe1fe;
|
|
}
|
|
|
|
.no-user {
|
|
background: $grey-80;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.Remixes {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: $unit-2x;
|
|
margin: 0 auto;
|
|
width: 720px;
|
|
|
|
@include breakpoint(tablet) {
|
|
gap: $unit;
|
|
max-width: 720px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
@include breakpoint(phone) {
|
|
max-width: inherit;
|
|
width: 100%;
|
|
}
|
|
|
|
h3 {
|
|
font-size: $font-medium;
|
|
font-weight: $medium;
|
|
|
|
@include breakpoint(phone) {
|
|
padding: 0 $unit;
|
|
}
|
|
}
|
|
|
|
.GridRepCollection {
|
|
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
|
|
margin-left: $unit-2x * -1;
|
|
margin-right: $unit-2x * -1;
|
|
|
|
@include breakpoint(tablet) {
|
|
grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
|
|
max-width: inherit;
|
|
width: 100%;
|
|
}
|
|
|
|
@include breakpoint(phone) {
|
|
grid-template-columns: 1fr;
|
|
margin-left: $unit * -1;
|
|
margin-right: $unit * -1;
|
|
max-width: inherit;
|
|
width: 100%;
|
|
}
|
|
|
|
.GridRep {
|
|
min-width: 200px;
|
|
|
|
@include breakpoint(phone) {
|
|
min-width: 360px;
|
|
}
|
|
}
|
|
}
|
|
}
|