mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-12-13 17:21:14 -05:00
541 lines
12 KiB
SCSS
541 lines
12 KiB
SCSS
@import "../../colors";
|
|
@import "../../frameless";
|
|
|
|
/* stage size constants */
|
|
$player-width: 482px;
|
|
$player-height: 406px;
|
|
$stage-width: 480px;
|
|
|
|
/* override view padding for share banner */
|
|
#view {
|
|
padding: 0;
|
|
}
|
|
|
|
.gui {
|
|
position: absolute;
|
|
top: 0;
|
|
z-index: 11;
|
|
margin: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.preview {
|
|
|
|
.project-title {
|
|
font-size: 1.75rem;
|
|
font-weight: 500;
|
|
|
|
&.has-error {
|
|
|
|
.validation-message {
|
|
transform: translate(22rem, 0);
|
|
}
|
|
}
|
|
|
|
&.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;
|
|
}
|
|
}
|
|
|
|
.project-header {
|
|
margin-right: 2rem;
|
|
min-width: 0;
|
|
flex-grow: 1;
|
|
justify-content: flex-start;
|
|
align-items: flex-start;
|
|
flex-wrap: nowrap;
|
|
|
|
.inplace-input {
|
|
height: calc(3rem - 4px);
|
|
}
|
|
}
|
|
|
|
img {
|
|
|
|
&.avatar {
|
|
border: 0;
|
|
border-radius: 5px;
|
|
width: 3rem;
|
|
height: 3rem;
|
|
|
|
&.remix {
|
|
margin-right: .5em;
|
|
width: 2rem;
|
|
height: 2rem;
|
|
}
|
|
}
|
|
}
|
|
|
|
.title {
|
|
margin-left: 1rem;
|
|
/* width: inherit; Inherits the width of whatever this is in. This works well for the preview page and might need to change if used in a different context*/
|
|
min-width: 0;
|
|
text-align: left;
|
|
font-size: .8rem;
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.validation-message {
|
|
$arrow-border-width: 1rem;
|
|
display: block;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
margin-left: $arrow-border-width;
|
|
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;
|
|
|
|
&:before {
|
|
display: block;
|
|
position: absolute;
|
|
top: 1rem;
|
|
left: -$arrow-border-width / 2;
|
|
|
|
transform: rotate(45deg);
|
|
|
|
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: "";
|
|
}
|
|
}
|
|
|
|
.row {
|
|
|
|
&.has-error {
|
|
.inplace-input,
|
|
.inplace-textarea {
|
|
border: 1px solid $ui-orange;
|
|
}
|
|
}
|
|
|
|
.col-sm-9 {
|
|
position: relative;
|
|
}
|
|
}
|
|
|
|
.project-buttons {
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.button {
|
|
margin-left: 1rem;
|
|
}
|
|
|
|
.comments-container {
|
|
width: 65%;
|
|
}
|
|
|
|
.remix-button,
|
|
.see-inside-button {
|
|
margin-top: 0;
|
|
font-size: .875rem;
|
|
font-weight: normal;
|
|
|
|
&:before {
|
|
display: inline-block;
|
|
margin-right: .5rem;
|
|
background-repeat: no-repeat;
|
|
background-position: center center;
|
|
background-size: contain;
|
|
width: 1.25rem;
|
|
height: 1.25rem;
|
|
vertical-align: middle;
|
|
content: "";
|
|
}
|
|
}
|
|
|
|
.remix-button {
|
|
background-color: $ui-aqua;
|
|
|
|
&:before {
|
|
background-image: url("/svgs/project/remix-white.svg");
|
|
}
|
|
}
|
|
|
|
.see-inside-button {
|
|
|
|
&:before {
|
|
background-image: url("/svgs/project/see-inside-white.svg");
|
|
}
|
|
}
|
|
|
|
.preview-row {
|
|
margin-top: 1rem;
|
|
justify-content: space-between;
|
|
align-items: flex-start;
|
|
flex-wrap: nowrap;
|
|
}
|
|
|
|
.guiPlayer {
|
|
display: inline-block;
|
|
width: $player-width;
|
|
}
|
|
|
|
.project-notes {
|
|
margin-left: 1rem;
|
|
height: $player-height;
|
|
align-items: flex-start;
|
|
flex: 1;
|
|
flex-flow: column;
|
|
|
|
> .description-block:first-child {
|
|
margin-top: 1rem;
|
|
}
|
|
}
|
|
|
|
.share-date {
|
|
margin-right: .75rem;
|
|
vertical-align: middle;
|
|
line-height: 2rem;
|
|
color: $type-gray;
|
|
font-size: .875rem;
|
|
}
|
|
|
|
.subactions {
|
|
margin-left: 1.5rem;
|
|
justify-content: flex-end;
|
|
align-items: flex-start;
|
|
flex: 1;
|
|
}
|
|
|
|
.remix-credit {
|
|
margin-bottom: 1rem;
|
|
border: 1px solid $ui-blue-10percent;
|
|
border-radius: 8px;
|
|
background-color: $ui-blue-10percent;
|
|
padding: .5rem;
|
|
width: calc(100% - 1rem);
|
|
flex-wrap: nowrap;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.credit-text {
|
|
font-size: .875rem;
|
|
flex-shrink: 1;
|
|
}
|
|
|
|
.credit-text {
|
|
/* Line clamping is not supported in IE, FF yet */
|
|
display: -webkit-box;
|
|
overflow: hidden;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-line-clamp: 2;
|
|
}
|
|
|
|
.description-block {
|
|
display: flex;
|
|
width: 100%;
|
|
min-height: 0;
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
flex: 1;
|
|
}
|
|
|
|
.project-textlabel {
|
|
margin: 0 0 .5rem 0;
|
|
font-size: 1rem;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.project-description {
|
|
margin-bottom: .75rem;
|
|
border: 1px solid $ui-blue-10percent;
|
|
border-radius: 8px;
|
|
background-color: $ui-blue-10percent;
|
|
padding: .5rem;
|
|
width: calc(100% - (1rem + 2px));
|
|
overflow: auto;
|
|
white-space: pre-line;
|
|
font-size: 1rem;
|
|
// flex-grow
|
|
flex: 1;
|
|
}
|
|
|
|
.project-description.last {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.project-description-edit {
|
|
display: flex;
|
|
margin-bottom: .75rem;
|
|
border: 1px solid $ui-blue-10percent;
|
|
border-radius: 8px;
|
|
background-color: $ui-blue-10percent;
|
|
padding: .5rem;
|
|
width: 100%;
|
|
white-space: pre-line;
|
|
// flex-grow
|
|
flex: 1;
|
|
|
|
&.last {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
&.textarea-row {
|
|
border: 0;
|
|
background-color: inherit;
|
|
padding: 0;
|
|
}
|
|
|
|
&.has-error {
|
|
.validation-message {
|
|
transform: translate(26rem, 0);
|
|
}
|
|
}
|
|
|
|
& > .grow {
|
|
display: flex;
|
|
flex: 1;
|
|
}
|
|
}
|
|
|
|
.copyleft {
|
|
display: inline-block;
|
|
transform: scale(-1, 1);
|
|
margin: 0;
|
|
text-align: right;
|
|
}
|
|
|
|
.stats {
|
|
line-height: 2rem;
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.project-loves,
|
|
.project-favorites,
|
|
.project-remixes,
|
|
.project-views {
|
|
|
|
display: inline;
|
|
padding-right: 2rem;
|
|
font-size: 1rem;
|
|
font-weight: bold;
|
|
|
|
&:before {
|
|
display: inline-block;
|
|
margin-right: .5rem;
|
|
background-repeat: no-repeat;
|
|
background-position: center center;
|
|
background-size: contain;
|
|
width: 1.5rem;
|
|
height: 1.5rem;
|
|
vertical-align: -.25rem;
|
|
content: "";
|
|
}
|
|
}
|
|
|
|
.project-loves {
|
|
|
|
cursor: pointer;
|
|
|
|
&:before {
|
|
opacity: .5;
|
|
background-image: url("/svgs/project/love-gray.svg");
|
|
}
|
|
}
|
|
|
|
.project-loves.loved {
|
|
|
|
&:before {
|
|
opacity: 1;
|
|
background-image: url("/svgs/project/love-red.svg");
|
|
}
|
|
}
|
|
|
|
.project-favorites {
|
|
|
|
cursor: pointer;
|
|
|
|
&:before {
|
|
opacity: .5;
|
|
background-image: url("/svgs/project/fav-gray.svg");
|
|
}
|
|
}
|
|
|
|
.project-favorites.favorited {
|
|
|
|
&:before {
|
|
opacity: 1;
|
|
background-image: url("/svgs/project/fav-yellow.svg");
|
|
}
|
|
}
|
|
|
|
.project-remixes {
|
|
|
|
&:before {
|
|
opacity: .5;
|
|
background-image: url("/svgs/project/remix-gray.svg");
|
|
}
|
|
}
|
|
|
|
.project-views {
|
|
|
|
&:before {
|
|
opacity: .5;
|
|
background-image: url("/svgs/project/views-gray.svg");
|
|
}
|
|
}
|
|
|
|
.action-buttons {
|
|
display: flex;
|
|
margin-top: 0;
|
|
color: $type-white;
|
|
font-size: .8rem;
|
|
font-weight: 500;
|
|
justify-content: flex-end;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.action-button {
|
|
margin: 0 0 0 .5rem;
|
|
border-radius: 19px;
|
|
background-color: $ui-blue;
|
|
padding: 0 .75rem;
|
|
height: 2rem;
|
|
text-decoration: none;
|
|
line-height: .875rem;
|
|
font-size: .75rem;
|
|
font-weight: normal;
|
|
|
|
// &:hover {
|
|
// transition: background-color .25s ease;
|
|
// border-color: transparent;
|
|
// background-color: $active-gray;
|
|
// }
|
|
//
|
|
// &:active {
|
|
// border: 0 solid transparent;
|
|
// box-shadow: inset 0 0 5px $box-shadow-gray;
|
|
// background-color: $active-dark-gray;
|
|
// padding: calc(.75em + 1px) calc(1.5em + 1px);
|
|
// }
|
|
//
|
|
// &.report {
|
|
// border: 1px solid $ui-coral;
|
|
// background-color: $ui-coral;
|
|
//
|
|
// &:hover {
|
|
// transition: background-color .25s ease;
|
|
// border-color: transparent;
|
|
// background-color: $active-gray;
|
|
// }
|
|
//
|
|
// &:active {
|
|
// border: 0 solid transparent;
|
|
// box-shadow: inset 0 0 5px $box-shadow-gray;
|
|
// background-color: $active-dark-gray;
|
|
// padding: calc(.75em + 1px) calc(1.5em + 1px);
|
|
// }
|
|
// }
|
|
}
|
|
|
|
.comments-header {
|
|
padding: 0 0 1rem 0;
|
|
justify-content: space-between;
|
|
|
|
h4 {
|
|
font-size: 1.25rem;
|
|
}
|
|
}
|
|
|
|
.studio-button,
|
|
.copy-link-button,
|
|
.report-button {
|
|
&:before {
|
|
display: inline-block;
|
|
margin-right: .25rem;
|
|
background-repeat: no-repeat;
|
|
background-position: center center;
|
|
background-size: contain;
|
|
width: .875rem;
|
|
height: .875rem;
|
|
vertical-align: bottom;
|
|
content: "";
|
|
}
|
|
}
|
|
|
|
.studio-button {
|
|
&:before {
|
|
background-image: url("/svgs/project/studio-add-white.svg");
|
|
}
|
|
}
|
|
|
|
.copy-link-button {
|
|
&:before {
|
|
background-image: url("/svgs/project/copy-link-white.svg");
|
|
}
|
|
}
|
|
|
|
.report-button {
|
|
background-color: $ui-coral;
|
|
|
|
&:before {
|
|
background-image: url("/svgs/project/report-white.svg");
|
|
}
|
|
}
|
|
|
|
.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%;
|
|
}
|
|
|
|
.extension-list {
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.remix-list,
|
|
.studio-list {
|
|
flex-direction: column;
|
|
|
|
.list-title {
|
|
margin-left: 1rem;
|
|
font-size: 1.2rem;
|
|
font-weight: bold;
|
|
align-self: flex-start;
|
|
}
|
|
|
|
.creator-image img {
|
|
max-width: 2rem;
|
|
max-height: 2rem;
|
|
}
|
|
|
|
.thumbnail-column {
|
|
display: inline-block;
|
|
width: 100%;
|
|
}
|
|
}
|
|
}
|
|
|
|
.report-text textarea {
|
|
// override min-height from default settings (for teacher registration)
|
|
min-height: 8rem;
|
|
}
|