2018-03-08 15:57:19 -05:00
|
|
|
@import "../../colors";
|
|
|
|
@import "../../frameless";
|
|
|
|
|
2018-08-07 10:17:12 -04:00
|
|
|
/* stage size constants */
|
|
|
|
$player-width: 482px;
|
|
|
|
$player-height: 406px;
|
2018-05-24 09:57:06 -04:00
|
|
|
$stage-width: 480px;
|
2018-05-28 16:00:09 -04:00
|
|
|
|
2018-05-02 15:27:49 -04:00
|
|
|
/* override view padding for share banner */
|
|
|
|
#view {
|
2018-08-06 11:52:18 -04:00
|
|
|
padding: 0;
|
2018-10-04 10:41:10 -04:00
|
|
|
width: 100%;
|
2018-05-02 15:27:49 -04:00
|
|
|
}
|
|
|
|
|
2018-03-15 17:40:16 -04:00
|
|
|
.gui {
|
2018-05-02 15:27:49 -04:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
2018-03-15 17:40:16 -04:00
|
|
|
margin: 0;
|
2018-03-08 15:57:19 -05:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
2018-03-14 15:50:27 -04:00
|
|
|
.preview {
|
2018-05-02 15:27:49 -04:00
|
|
|
|
2018-09-21 09:19:58 -04:00
|
|
|
.inner {
|
2018-10-01 13:56:11 -04:00
|
|
|
margin: 0 auto;
|
|
|
|
|
2018-10-09 10:24:02 -04:00
|
|
|
@media #{$medium-and-smaller} {
|
2018-10-04 09:47:28 -04:00
|
|
|
max-width: 90%;
|
2018-09-25 15:31:31 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
@media #{$intermediate} {
|
2018-10-04 09:47:28 -04:00
|
|
|
width: 90%;
|
2018-10-04 10:51:26 -04:00
|
|
|
min-width: 640px;
|
2018-09-25 15:31:31 -04:00
|
|
|
}
|
2018-09-21 09:19:58 -04:00
|
|
|
}
|
|
|
|
|
2018-04-24 11:00:47 -04:00
|
|
|
.project-title {
|
|
|
|
font-size: 1.75rem;
|
2018-03-14 15:50:27 -04:00
|
|
|
font-weight: 500;
|
2018-08-07 10:17:12 -04:00
|
|
|
|
2018-04-24 11:00:47 -04:00
|
|
|
&.has-error {
|
|
|
|
.validation-message {
|
2018-09-12 17:28:27 -04:00
|
|
|
right: 0;
|
2018-04-24 11:00:47 -04:00
|
|
|
}
|
|
|
|
}
|
2018-08-23 14:24:31 -04:00
|
|
|
|
|
|
|
&.no-edit {
|
|
|
|
/* titles of projects you don't own should not
|
|
|
|
show the full title if this is too long */
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2018-03-14 15:50:27 -04:00
|
|
|
}
|
2018-08-07 10:17:12 -04:00
|
|
|
|
2018-05-28 13:12:26 -04:00
|
|
|
.project-header {
|
|
|
|
margin-right: 2rem;
|
2018-08-30 15:37:51 -04:00
|
|
|
min-width: 0;
|
2018-05-28 13:12:26 -04:00
|
|
|
flex-grow: 1;
|
|
|
|
justify-content: flex-start;
|
2018-05-30 10:27:22 -04:00
|
|
|
align-items: flex-start;
|
2018-08-23 14:24:31 -04:00
|
|
|
flex-wrap: nowrap;
|
2018-08-07 10:17:12 -04:00
|
|
|
|
2018-05-30 10:27:22 -04:00
|
|
|
.inplace-input {
|
|
|
|
height: calc(3rem - 4px);
|
|
|
|
}
|
2018-09-14 16:32:57 -04:00
|
|
|
|
2018-10-05 10:25:56 -04:00
|
|
|
@media #{$medium-and-smaller} {
|
2018-09-14 16:32:57 -04:00
|
|
|
flex-direction: row;
|
|
|
|
}
|
2018-10-04 10:41:10 -04:00
|
|
|
|
|
|
|
@media #{$small} {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
2018-05-28 13:12:26 -04:00
|
|
|
}
|
2018-08-07 10:17:12 -04:00
|
|
|
|
2018-03-15 17:40:16 -04:00
|
|
|
img {
|
2018-08-07 10:17:12 -04:00
|
|
|
|
2018-03-15 17:40:16 -04:00
|
|
|
&.avatar {
|
|
|
|
border: 0;
|
|
|
|
border-radius: 5px;
|
|
|
|
width: 3rem;
|
2018-05-30 10:27:22 -04:00
|
|
|
height: 3rem;
|
2018-08-07 10:17:12 -04:00
|
|
|
|
2018-03-15 17:40:16 -04:00
|
|
|
&.remix {
|
|
|
|
margin-right: .5em;
|
2018-05-30 10:27:22 -04:00
|
|
|
width: 2rem;
|
|
|
|
height: 2rem;
|
2018-03-15 17:40:16 -04:00
|
|
|
}
|
|
|
|
}
|
2018-03-14 15:50:27 -04:00
|
|
|
}
|
2018-08-07 10:17:12 -04:00
|
|
|
|
2018-03-14 15:50:27 -04:00
|
|
|
.title {
|
|
|
|
margin-left: 1rem;
|
2018-08-30 15:37:51 -04:00
|
|
|
min-width: 0;
|
2018-03-14 15:50:27 -04:00
|
|
|
text-align: left;
|
2018-03-15 17:40:16 -04:00
|
|
|
font-size: .8rem;
|
2018-05-28 13:12:26 -04:00
|
|
|
flex-grow: 1;
|
2018-09-26 15:01:25 -04:00
|
|
|
|
2018-10-05 10:25:56 -04:00
|
|
|
@media #{$medium-and-smaller} {
|
2018-09-26 15:01:25 -04:00
|
|
|
min-width: 100%;
|
|
|
|
}
|
2018-03-14 15:50:27 -04:00
|
|
|
}
|
2018-08-07 10:17:12 -04:00
|
|
|
|
2018-08-23 14:31:44 -04:00
|
|
|
.validation-message {
|
2018-09-24 15:28:10 -04:00
|
|
|
$arrow-border-width: 1rem;
|
2018-04-24 11:00:47 -04:00
|
|
|
display: block;
|
|
|
|
position: absolute;
|
2018-09-13 10:49:59 -04:00
|
|
|
z-index: 1;
|
2018-09-12 17:28:27 -04:00
|
|
|
margin-top: $arrow-border-width;
|
2018-04-24 11:00:47 -04:00
|
|
|
border: 1px solid $active-gray;
|
|
|
|
border-radius: 5px;
|
|
|
|
background-color: $ui-orange;
|
|
|
|
padding: 1rem;
|
|
|
|
max-width: 18.75rem;
|
|
|
|
min-height: 1rem;
|
|
|
|
overflow: visible;
|
|
|
|
color: $type-white;
|
|
|
|
font-size: 1rem;
|
|
|
|
|
2018-10-05 10:25:56 -04:00
|
|
|
@media #{$medium-and-smaller} {
|
2018-09-13 10:39:19 -04:00
|
|
|
margin-top: calc($arrow-border-width / 2);
|
2018-09-13 10:49:59 -04:00
|
|
|
width: 100%;
|
2018-09-13 10:39:19 -04:00
|
|
|
}
|
|
|
|
|
2018-04-24 11:00:47 -04:00
|
|
|
&:before {
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
2018-09-13 10:49:59 -04:00
|
|
|
top: -.5rem;
|
2018-09-13 10:39:19 -04:00
|
|
|
left: calc(50% - calc(#{$arrow-border-width} / 2));
|
2018-04-24 11:00:47 -04:00
|
|
|
|
2018-09-12 17:28:27 -04:00
|
|
|
transform: rotate(135deg);
|
2018-04-24 11:00:47 -04:00
|
|
|
|
|
|
|
border-bottom: 1px solid $active-gray;
|
|
|
|
border-left: 1px solid $active-gray;
|
|
|
|
border-radius: 5px;
|
|
|
|
|
|
|
|
background-color: $ui-orange;
|
|
|
|
width: $arrow-border-width;
|
|
|
|
height: $arrow-border-width;
|
|
|
|
|
|
|
|
content: "";
|
2018-09-13 10:39:19 -04:00
|
|
|
|
2018-10-05 10:25:56 -04:00
|
|
|
@media #{$medium-and-smaller} {
|
2018-09-13 10:39:19 -04:00
|
|
|
display: none;
|
|
|
|
}
|
2018-04-24 11:00:47 -04:00
|
|
|
}
|
|
|
|
}
|
2018-08-07 10:17:12 -04:00
|
|
|
|
|
|
|
.row {
|
2018-04-24 11:00:47 -04:00
|
|
|
|
|
|
|
&.has-error {
|
|
|
|
.inplace-input,
|
|
|
|
.inplace-textarea {
|
|
|
|
border: 1px solid $ui-orange;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.col-sm-9 {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
}
|
2018-08-07 10:17:12 -04:00
|
|
|
|
2018-08-30 15:37:51 -04:00
|
|
|
.project-buttons {
|
2018-11-17 15:13:58 -05:00
|
|
|
font-weight: bold;
|
2018-08-30 15:44:17 -04:00
|
|
|
flex-shrink: 0;
|
2018-08-30 15:37:51 -04:00
|
|
|
}
|
|
|
|
|
2018-03-14 15:50:27 -04:00
|
|
|
.button {
|
|
|
|
margin-left: 1rem;
|
|
|
|
}
|
2018-08-07 10:17:12 -04:00
|
|
|
|
2018-11-21 12:12:51 -05:00
|
|
|
.inplace-textarea::placeholder {
|
|
|
|
padding: 0;
|
2018-11-21 13:00:53 -05:00
|
|
|
text-align: start;
|
2018-11-21 12:12:51 -05:00
|
|
|
}
|
|
|
|
|
2018-03-14 15:50:27 -04:00
|
|
|
.comments-container {
|
2018-09-26 16:45:42 -04:00
|
|
|
padding-right: 1.5rem;
|
2018-09-17 11:19:22 -04:00
|
|
|
min-width: 65%;
|
2018-09-26 16:39:37 -04:00
|
|
|
max-width: 100%;
|
|
|
|
flex: 1;
|
2018-09-17 11:19:22 -04:00
|
|
|
|
2018-10-05 10:25:56 -04:00
|
|
|
@media #{$medium-and-smaller} {
|
2018-09-26 16:39:37 -04:00
|
|
|
padding: 0;
|
2018-09-26 16:45:42 -04:00
|
|
|
width: 100%;
|
2018-09-17 11:19:22 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.comment, .comment-top-row, .comment-bottom-row {
|
2018-09-26 16:45:42 -04:00
|
|
|
flex-direction: row;
|
2018-09-17 11:19:22 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.comment-bubble {
|
2018-09-26 16:45:42 -04:00
|
|
|
text-align: left;
|
2018-09-17 11:19:22 -04:00
|
|
|
}
|
2018-10-10 15:14:53 -04:00
|
|
|
|
|
|
|
.comments-turned-off {
|
|
|
|
border: 1px solid $ui-blue-25percent;
|
|
|
|
border-radius: .5rem;
|
|
|
|
background: $ui-blue-10percent;
|
2018-10-10 15:29:30 -04:00
|
|
|
padding: 1.5rem 0;
|
2018-10-10 15:14:53 -04:00
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.comments-allowed-input {
|
|
|
|
margin-right: 3px;
|
|
|
|
}
|
2018-03-14 15:50:27 -04:00
|
|
|
}
|
2018-08-07 10:17:12 -04:00
|
|
|
|
2018-03-15 17:40:16 -04:00
|
|
|
.remix-button,
|
|
|
|
.see-inside-button {
|
2018-05-28 13:12:26 -04:00
|
|
|
margin-top: 0;
|
2018-11-19 13:22:27 -05:00
|
|
|
border-radius: .25rem;
|
2018-11-17 15:13:58 -05:00
|
|
|
padding-top: .6875rem;
|
2018-11-18 11:19:21 -05:00
|
|
|
padding-right: .9375rem;
|
2018-11-17 15:13:58 -05:00
|
|
|
padding-bottom: .6875rem;
|
2018-11-18 11:19:21 -05:00
|
|
|
padding-left: .875rem;
|
|
|
|
height: 2.5rem;
|
|
|
|
font-size: .875rem;
|
2018-08-07 10:17:12 -04:00
|
|
|
|
2018-03-15 17:40:16 -04:00
|
|
|
&:before {
|
|
|
|
display: inline-block;
|
2018-11-17 15:13:58 -05:00
|
|
|
margin-top: -2px;
|
|
|
|
margin-right: .4375rem;
|
2018-03-15 17:40:16 -04:00
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center center;
|
|
|
|
background-size: contain;
|
2018-11-17 15:13:58 -05:00
|
|
|
width: 1.125rem;
|
2018-11-18 11:19:21 -05:00
|
|
|
height: 1.125rem;
|
2018-03-15 17:40:16 -04:00
|
|
|
vertical-align: middle;
|
|
|
|
content: "";
|
|
|
|
}
|
2018-03-08 15:57:19 -05:00
|
|
|
}
|
|
|
|
|
2018-03-15 17:40:16 -04:00
|
|
|
.remix-button {
|
2018-07-16 18:02:12 -04:00
|
|
|
background-color: $ui-aqua;
|
2018-08-07 10:17:12 -04:00
|
|
|
|
2018-03-15 17:40:16 -04:00
|
|
|
&:before {
|
2018-05-24 09:57:06 -04:00
|
|
|
background-image: url("/svgs/project/remix-white.svg");
|
2018-03-15 17:40:16 -04:00
|
|
|
}
|
2018-03-08 15:57:19 -05:00
|
|
|
}
|
|
|
|
|
2018-03-15 17:40:16 -04:00
|
|
|
.see-inside-button {
|
2018-08-07 10:17:12 -04:00
|
|
|
|
2018-03-15 17:40:16 -04:00
|
|
|
&:before {
|
2018-05-24 09:57:06 -04:00
|
|
|
background-image: url("/svgs/project/see-inside-white.svg");
|
2018-03-15 17:40:16 -04:00
|
|
|
}
|
|
|
|
}
|
2018-08-07 10:17:12 -04:00
|
|
|
|
2018-03-15 17:40:16 -04:00
|
|
|
.preview-row {
|
|
|
|
margin-top: 1rem;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: flex-start;
|
2018-06-18 17:15:56 -04:00
|
|
|
flex-wrap: nowrap;
|
2018-09-14 13:52:29 -04:00
|
|
|
|
2018-09-14 17:02:13 -04:00
|
|
|
&.force-row {
|
2018-10-05 10:25:56 -04:00
|
|
|
@media #{$medium-and-smaller} {
|
2018-09-14 17:02:13 -04:00
|
|
|
flex-direction: row;
|
2018-09-14 13:52:29 -04:00
|
|
|
}
|
|
|
|
}
|
2018-03-15 17:40:16 -04:00
|
|
|
}
|
2018-03-08 15:57:19 -05:00
|
|
|
|
2018-05-02 15:27:49 -04:00
|
|
|
.guiPlayer {
|
2018-03-15 17:40:16 -04:00
|
|
|
display: inline-block;
|
2018-08-07 10:17:12 -04:00
|
|
|
width: $player-width;
|
2018-09-26 17:16:17 -04:00
|
|
|
|
|
|
|
@media #{$small} {
|
2018-09-26 17:26:19 -04:00
|
|
|
width: 100%;
|
2018-09-26 17:16:17 -04:00
|
|
|
}
|
2018-03-15 17:40:16 -04:00
|
|
|
}
|
2018-03-08 15:57:19 -05:00
|
|
|
|
2018-09-25 17:16:02 -04:00
|
|
|
.force-center {
|
2018-10-05 10:25:56 -04:00
|
|
|
@media #{$medium-and-smaller} {
|
2018-09-25 17:16:02 -04:00
|
|
|
align-self: center;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-15 17:40:16 -04:00
|
|
|
.project-notes {
|
2018-05-24 09:57:06 -04:00
|
|
|
margin-left: 1rem;
|
2018-08-07 10:17:12 -04:00
|
|
|
height: $player-height;
|
2018-05-24 09:57:06 -04:00
|
|
|
align-items: flex-start;
|
2018-05-28 13:12:26 -04:00
|
|
|
flex: 1;
|
|
|
|
flex-flow: column;
|
2018-09-19 15:03:20 -04:00
|
|
|
|
2018-10-05 10:25:56 -04:00
|
|
|
@media #{$medium-and-smaller} {
|
2018-09-26 17:16:17 -04:00
|
|
|
margin-top: 1rem;
|
|
|
|
margin-left: 0;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2018-09-19 15:03:20 -04:00
|
|
|
> .description-block:first-child {
|
|
|
|
margin-top: 1rem;
|
|
|
|
}
|
2018-03-15 17:40:16 -04:00
|
|
|
}
|
2018-03-08 15:57:19 -05:00
|
|
|
|
2018-03-15 17:40:16 -04:00
|
|
|
.remix-credit {
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
border: 1px solid $ui-blue-10percent;
|
|
|
|
border-radius: 8px;
|
|
|
|
background-color: $ui-blue-10percent;
|
|
|
|
padding: .5rem;
|
2018-05-24 09:57:06 -04:00
|
|
|
width: calc(100% - 1rem);
|
2018-03-15 17:40:16 -04:00
|
|
|
flex-wrap: nowrap;
|
2018-10-03 10:29:45 -04:00
|
|
|
align-items: center;
|
2018-10-03 10:32:12 -04:00
|
|
|
|
2018-10-05 10:25:56 -04:00
|
|
|
@media #{$medium-and-smaller} {
|
2018-10-03 10:32:12 -04:00
|
|
|
flex-direction: row;
|
|
|
|
}
|
2018-03-15 17:40:16 -04:00
|
|
|
}
|
2018-03-08 15:57:19 -05:00
|
|
|
|
2018-03-15 17:40:16 -04:00
|
|
|
.credit-text {
|
|
|
|
font-size: .875rem;
|
|
|
|
flex-shrink: 1;
|
2018-03-08 15:57:19 -05:00
|
|
|
}
|
2018-08-07 10:17:12 -04:00
|
|
|
|
2018-05-24 09:57:06 -04:00
|
|
|
.description-block {
|
2018-06-01 09:45:49 -04:00
|
|
|
display: flex;
|
2018-05-28 13:12:26 -04:00
|
|
|
width: 100%;
|
2018-06-25 16:41:39 -04:00
|
|
|
min-height: 0;
|
2018-05-24 09:57:06 -04:00
|
|
|
flex-direction: column;
|
|
|
|
align-items: flex-start;
|
2018-06-01 09:45:49 -04:00
|
|
|
flex: 1;
|
2018-05-24 09:57:06 -04:00
|
|
|
}
|
2018-08-07 10:17:12 -04:00
|
|
|
|
2018-05-24 09:57:06 -04:00
|
|
|
.project-textlabel {
|
|
|
|
margin: 0 0 .5rem 0;
|
2018-05-30 10:27:22 -04:00
|
|
|
font-size: 1rem;
|
2018-05-28 13:12:26 -04:00
|
|
|
font-weight: bold;
|
2018-05-24 09:57:06 -04:00
|
|
|
}
|
2018-03-08 15:57:19 -05:00
|
|
|
|
2018-03-15 17:40:16 -04:00
|
|
|
.project-description {
|
2018-05-28 13:12:26 -04:00
|
|
|
margin-bottom: .75rem;
|
2018-05-24 09:57:06 -04:00
|
|
|
border: 1px solid $ui-blue-10percent;
|
|
|
|
border-radius: 8px;
|
|
|
|
background-color: $ui-blue-10percent;
|
|
|
|
padding: .5rem;
|
|
|
|
width: calc(100% - (1rem + 2px));
|
2018-06-01 14:25:45 -04:00
|
|
|
overflow: auto;
|
2018-08-07 10:17:12 -04:00
|
|
|
white-space: pre-line;
|
2018-05-30 10:27:22 -04:00
|
|
|
font-size: 1rem;
|
2018-05-24 09:57:06 -04:00
|
|
|
// flex-grow
|
|
|
|
flex: 1;
|
|
|
|
}
|
2018-08-07 10:17:12 -04:00
|
|
|
|
2018-05-24 09:57:06 -04:00
|
|
|
.project-description.last {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
2018-10-25 11:38:27 -04:00
|
|
|
.project-description-form {
|
|
|
|
display: flex;
|
|
|
|
width: 100%;
|
|
|
|
flex-grow: 1;
|
|
|
|
}
|
|
|
|
|
2018-05-24 09:57:06 -04:00
|
|
|
.project-description-edit {
|
2018-05-31 16:49:17 -04:00
|
|
|
display: flex;
|
2018-05-30 10:27:22 -04:00
|
|
|
margin-bottom: .75rem;
|
2018-03-15 17:40:16 -04:00
|
|
|
border: 1px solid $ui-blue-10percent;
|
|
|
|
border-radius: 8px;
|
|
|
|
background-color: $ui-blue-10percent;
|
|
|
|
padding: .5rem;
|
|
|
|
width: 100%;
|
|
|
|
white-space: pre-line;
|
2018-05-24 09:57:06 -04:00
|
|
|
// flex-grow
|
2018-03-15 17:40:16 -04:00
|
|
|
flex: 1;
|
2018-08-07 10:17:12 -04:00
|
|
|
|
2018-05-30 10:27:22 -04:00
|
|
|
&.last {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2018-08-07 10:17:12 -04:00
|
|
|
|
2018-04-24 11:00:47 -04:00
|
|
|
&.textarea-row {
|
|
|
|
border: 0;
|
|
|
|
background-color: inherit;
|
|
|
|
padding: 0;
|
|
|
|
}
|
2018-08-07 10:17:12 -04:00
|
|
|
|
2018-04-24 11:00:47 -04:00
|
|
|
&.has-error {
|
|
|
|
.validation-message {
|
|
|
|
transform: translate(26rem, 0);
|
|
|
|
}
|
|
|
|
}
|
2018-08-07 10:17:12 -04:00
|
|
|
|
2018-05-31 16:49:17 -04:00
|
|
|
& > .grow {
|
|
|
|
display: flex;
|
|
|
|
flex: 1;
|
2018-05-24 09:57:06 -04:00
|
|
|
}
|
|
|
|
}
|
2018-08-07 10:17:12 -04:00
|
|
|
|
2018-08-06 11:52:18 -04:00
|
|
|
.comments-header {
|
|
|
|
padding: 0 0 1rem 0;
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
|
|
h4 {
|
|
|
|
font-size: 1.25rem;
|
|
|
|
}
|
|
|
|
}
|
2018-08-07 10:17:12 -04:00
|
|
|
|
2018-08-06 11:52:18 -04:00
|
|
|
.project-lower-container {
|
|
|
|
margin-top: 1rem;
|
|
|
|
background-color: $ui-blue-10percent;
|
|
|
|
padding: 1rem 0;
|
|
|
|
min-height: 12rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.create-comment {
|
|
|
|
margin-bottom: 2rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.load-more-button {
|
|
|
|
margin-left: 0;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2018-06-13 16:45:06 -04:00
|
|
|
.extension-list {
|
|
|
|
justify-content: flex-start;
|
2018-09-21 13:52:42 -04:00
|
|
|
flex-direction: row;
|
|
|
|
|
2018-10-05 10:25:56 -04:00
|
|
|
@media #{$medium-and-smaller} {
|
2018-09-21 13:52:42 -04:00
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
2018-06-13 16:45:06 -04:00
|
|
|
}
|
2018-08-06 11:52:18 -04:00
|
|
|
|
2018-04-24 11:00:47 -04:00
|
|
|
.remix-list,
|
|
|
|
.studio-list {
|
|
|
|
flex-direction: column;
|
2018-08-07 10:17:12 -04:00
|
|
|
|
2018-08-28 17:01:36 -04:00
|
|
|
.list-title {
|
2018-08-24 09:25:04 -04:00
|
|
|
margin-left: 1rem;
|
|
|
|
font-size: 1.2rem;
|
|
|
|
font-weight: bold;
|
|
|
|
align-self: flex-start;
|
2018-04-24 11:00:47 -04:00
|
|
|
}
|
2018-08-07 10:17:12 -04:00
|
|
|
|
2018-04-24 11:00:47 -04:00
|
|
|
.creator-image img {
|
|
|
|
max-width: 2rem;
|
|
|
|
max-height: 2rem;
|
|
|
|
}
|
2018-08-07 10:17:12 -04:00
|
|
|
|
2018-04-24 11:00:47 -04:00
|
|
|
.thumbnail-column {
|
|
|
|
display: inline-block;
|
|
|
|
width: 100%;
|
2018-09-18 17:05:50 -04:00
|
|
|
|
2018-09-27 10:31:32 -04:00
|
|
|
/* TODO: the following can be transferred to
|
2018-09-18 17:05:50 -04:00
|
|
|
src/components/thumbnailcolumn/thumbnailcolumn.scss
|
|
|
|
after testing */
|
2018-10-05 10:25:56 -04:00
|
|
|
@media #{$medium-and-smaller} {
|
2018-09-18 17:05:50 -04:00
|
|
|
flex-direction: row;
|
|
|
|
|
|
|
|
.thumbnail {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-05 10:25:56 -04:00
|
|
|
@media #{$medium-and-smaller} {
|
2018-09-18 17:05:50 -04:00
|
|
|
margin-top: 1rem;
|
2018-04-24 11:00:47 -04:00
|
|
|
}
|
|
|
|
}
|
2018-03-08 15:57:19 -05:00
|
|
|
}
|