scratch

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 80  →  ?path2? @ 81
/css/files/style.css
@@ -1,63 +1,54 @@
.fileupload-process {
background: rgba(245, 245, 245, 1); border: 0px solid rgba(255, 255, 255, 1); border-radius: 4px; height: 20px;
}
background: whitesmoke;
border: 0px solid white;
border-radius: 4px;
height: 20px; }
 
.progress-bar-custom {
background: #ff99ff;
}
background: #ff99ff; }
 
#previews {
display: table;
}
#previews .file-row {
display: table-row;
}
#previews .file-row > div {
display: table-cell;
vertical-align: top;
border-top: 1px solid #ddd;
padding: 1em;
background: #f9f9f9;
}
#previews .file-row:nth-child(odd) {
background: #f9f9f9;
/* border-top: 1em solid #ddd; */
}
display: table; }
#previews .file-row {
display: table-row; }
#previews .file-row > div {
display: table-cell;
vertical-align: top;
border-top: 1px solid #ddd;
padding: 1em;
background: #f9f9f9; }
#previews .file-row:nth-child(odd) {
background: #f9f9f9;
/* border-top: 1em solid #ddd; */ }
 
#uploadpanel {
min-height: 320px;
border: 2px dashed #F78700;
border-radius: 5px;
box-sizing: border-box;
/* outline-offset: -24px; */
background-image: url("../../img/blueprint.png");
background-repeat: repeat;
}
min-height: 320px;
border: 2px dashed #F78700;
border-radius: 5px;
box-sizing: border-box;
/* outline-offset: -24px; */
background-image: url("../../img/blueprint.png");
background-repeat: repeat; }
 
#total-progress {
opacity: 0;
transition: opacity 0.3s linear;
background: #f5f5f5;
padding: 0;
margin: 0;
}
opacity: 0;
transition: opacity 0.3s linear;
background: #f5f5f5;
padding: 0;
margin: 0; }
 
/* Hide the progress bar when finished */
#previews .file-row.dz-success .progress {
opacity: 0;
transition: opacity 0.3s linear;
}
opacity: 0;
transition: opacity 0.3s linear; }
#previews .file-row .remove {
display: none; }
#previews .file-row.dz-success .start, #previews .file-row.dz-success .cancel {
opacity: 0.3; }
#previews .file-row.dz-success .remove {
display: block; }
 
/* Hide the delete button initially */
#previews .file-row .remove {
display: none;
}
/* Hide the start and cancel buttons and show the delete button */
 
/* Hide the start and cancel buttons and show the delete button */
#previews .file-row.dz-success .start,
#previews .file-row.dz-success .cancel {
opacity: 0.3;
}
#previews .file-row.dz-success .remove {
display: block;
}
/*# sourceMappingURL=style.css.map */
/css/files/style.css.map
@@ -0,0 +1,7 @@
{
"version": 3,
"mappings": "AAAA,mBAAoB;EAClB,UAAU,EAAE,UAAsB;EAClC,MAAM,EAAE,eAAgC;EACxC,aAAa,EAAE,GAAG;EAClB,MAAM,EAAE,IAAI;;AAGd,oBAAqB;EACnB,UAAU,EAAE,OAAO;;AAGrB,SAAU;EACR,OAAO,EAAE,KAAK;EAEd,mBAAU;IACR,OAAO,EAAE,SAAS;IAElB,yBAAM;MACJ,OAAO,EAAE,UAAU;MACnB,cAAc,EAAE,GAAG;MACnB,UAAU,EAAE,cAAc;MAC1B,OAAO,EAAE,GAAG;MACZ,UAAU,EAAE,OAAO;IAGrB,kCAAiB;MACf,UAAU,EAAE,OAAO;MAEnB,iCAAiC;;AAKvC,YAAa;EACX,UAAU,EAAE,KAAK;EACjB,MAAM,EAAE,kBAAkB;EAC1B,aAAa,EAAE,GAAG;EAClB,UAAU,EAAE,UAAU;EAEtB,4BAA4B;EAC5B,gBAAgB,EAAE,8BAA8B;EAChD,iBAAiB,EAAE,MAAM;;AAG3B,eAAgB;EACd,OAAO,EAAE,CAAC;EACV,UAAU,EAAE,mBAAmB;EAC/B,UAAU,EAAE,OAAO;EACnB,OAAO,EAAE,CAAC;EACV,MAAM,EAAE,CAAC;;AAGX,yCAAyC;AAGvC,wCAAuB;EACrB,OAAO,EAAE,CAAC;EACV,UAAU,EAAE,mBAAmB;AAGjC,2BAAQ;EACN,OAAO,EAAE,IAAI;AAIb,6EAAgB;EACd,OAAO,EAAE,GAAG;AAGd,sCAAQ;EACN,OAAO,EAAE,KAAK;;AAKpB,sCAAsC;AAEtC,kEAAkE",
"sources": ["style.scss"],
"names": [],
"file": "style.css"
}
/css/files/style.scss
@@ -0,0 +1,78 @@
.fileupload-process {
background: rgba(245, 245, 245, 1);
border: 0px solid rgba(255, 255, 255, 1);
border-radius: 4px;
height: 20px;
}
 
.progress-bar-custom {
background: #ff99ff;
}
 
#previews {
display: table;
 
.file-row {
display: table-row;
 
> div {
display: table-cell;
vertical-align: top;
border-top: 1px solid #ddd;
padding: 1em;
background: #f9f9f9;
}
 
&:nth-child(odd) {
background: #f9f9f9;
 
/* border-top: 1em solid #ddd; */
}
}
}
 
#uploadpanel {
min-height: 320px;
border: 2px dashed #F78700;
border-radius: 5px;
box-sizing: border-box;
 
/* outline-offset: -24px; */
background-image: url("../../img/blueprint.png");
background-repeat: repeat;
}
 
#total-progress {
opacity: 0;
transition: opacity 0.3s linear;
background: #f5f5f5;
padding: 0;
margin: 0;
}
 
/* Hide the progress bar when finished */
 
#previews .file-row {
&.dz-success .progress {
opacity: 0;
transition: opacity 0.3s linear;
}
 
.remove {
display: none;
}
 
&.dz-success {
.start, .cancel {
opacity: 0.3;
}
 
.remove {
display: block;
}
}
}
 
/* Hide the delete button initially */
 
/* Hide the start and cancel buttons and show the delete button */
/css/style.css
@@ -1,70 +1,58 @@
@font-face {
font-family: 'Overdose Sunrise';
src: url('fonts/overdose_sunrise-webfont.woff2') format('woff2'),
url('fonts/overdose_sunrise-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
 
font-family: 'Overdose Sunrise';
src: url("fonts/overdose_sunrise-webfont.woff2") format("woff2"), url("fonts/overdose_sunrise-webfont.woff") format("woff");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: 'Rat Infested Mailbox';
src: url('fonts/rat_infested_mailbox-webfont.woff2') format('woff2'),
url('fonts/rat_infested_mailbox-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
 
}
 
font-family: 'Rat Infested Mailbox';
src: url("fonts/rat_infested_mailbox-webfont.woff2") format("woff2"), url("fonts/rat_infested_mailbox-webfont.woff") format("woff");
font-weight: normal;
font-style: normal; }
.paralax-background {
background: url('/img/scratch-logo.svg') no-repeat center center;
position: fixed;
width: 100%;
height: 480px; /*same height as jumbotron */
top:0;
left:0;
z-index: -1;
background: url("/img/scratch-logo.svg") no-repeat center center;
position: fixed;
width: 100%;
height: 480px;
/*same height as jumbotron */
top: 0;
left: 0;
z-index: -1;
box-shadow: inset 0px 0px 150px 60px rgba(0, 0, 0, 0.5);
/* Blur. */
/*-webkit-filter: blur(1px);
-moz-filter: blur(1px);
-o-filter: blur(1px);
-ms-filter: blur(1px);
filter: blur(1px);*/ }
 
box-shadow: inset 0px 0px 150px 60px rgba(0,0,0,0.5);
/* Blur. */
/*-webkit-filter: blur(1px);
-moz-filter: blur(1px);
-o-filter: blur(1px);
-ms-filter: blur(1px);
filter: blur(1px);*/
}
 
.jumbotron {
height: 480px;
color: red;
padding-top: 120px;
text-align: center;
text-shadow: #EEEE00 0 0 10px;
background: transparent;
font-family: 'Rat Infested Mailbox';
}
height: 480px;
color: red;
padding-top: 120px;
text-align: center;
text-shadow: #EEEE00 0 0 10px;
background: transparent;
font-family: 'Rat Infested Mailbox'; }
 
.trumbowyg-box {
display: block;
position: relative;
height: 100%;
margin: 0;
border: 0;
display: hidden;
font-family: monospace;
}
display: block;
position: relative;
height: 100%;
margin: 0;
border: 0;
display: hidden;
font-family: monospace; }
 
.trumbowyg-editor {
border: 0;
min-height: 480px;
}
border: 0;
min-height: 480px; }
 
#editorpanel {
width: 100%;
height: 100%;
padding: 0;
}
width: 100%;
height: 100%;
padding: 0; }
 
#box {
border: 1px solid #ddd;
}
border: 1px solid #ddd; }
 
/*# sourceMappingURL=style.css.map */
/css/style.css.map
@@ -0,0 +1,7 @@
{
"version": 3,
"mappings": "AAAA,UAKC;EAJC,WAAW,EAAE,kBAAkB;EAC/B,GAAG,EAAE,sHAAsH;EAC3H,WAAW,EAAE,MAAM;EACnB,UAAU,EAAE,MAAM;AAGpB,UAKC;EAJC,WAAW,EAAE,sBAAsB;EACnC,GAAG,EAAE,8HAA8H;EACnI,WAAW,EAAE,MAAM;EACnB,UAAU,EAAE,MAAM;AAGpB,mBAAoB;EAClB,UAAU,EAAE,oDAAoD;EAChE,QAAQ,EAAE,KAAK;EACf,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,KAAK;EAEb,6BAA6B;EAC7B,GAAG,EAAE,CAAC;EACN,IAAI,EAAE,CAAC;EACP,OAAO,EAAE,EAAE;EACX,UAAU,EAAE,2CAA2C;EAEvD,WAAW;EACX;;;;sBAIoB;;AAGtB,UAAW;EACT,MAAM,EAAE,KAAK;EACb,KAAK,EAAE,GAAG;EACV,WAAW,EAAE,KAAK;EAClB,UAAU,EAAE,MAAM;EAClB,WAAW,EAAE,gBAAgB;EAC7B,UAAU,EAAE,WAAW;EACvB,WAAW,EAAE,sBAAsB;;AAGrC,cAAe;EACb,OAAO,EAAE,KAAK;EACd,QAAQ,EAAE,QAAQ;EAClB,MAAM,EAAE,IAAI;EACZ,MAAM,EAAE,CAAC;EACT,MAAM,EAAE,CAAC;EACT,OAAO,EAAE,MAAM;EACf,WAAW,EAAE,SAAS;;AAGxB,iBAAkB;EAChB,MAAM,EAAE,CAAC;EACT,UAAU,EAAE,KAAK;;AAGnB,YAAa;EACX,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;EACZ,OAAO,EAAE,CAAC;;AAGZ,IAAK;EACH,MAAM,EAAE,cAAc",
"sources": ["style.scss"],
"names": [],
"file": "style.css"
}
/css/style.scss
@@ -0,0 +1,68 @@
@font-face {
font-family: 'Overdose Sunrise';
src: url('fonts/overdose_sunrise-webfont.woff2') format("woff2"), url('fonts/overdose_sunrise-webfont.woff') format("woff");
font-weight: normal;
font-style: normal;
}
 
@font-face {
font-family: 'Rat Infested Mailbox';
src: url('fonts/rat_infested_mailbox-webfont.woff2') format("woff2"), url('fonts/rat_infested_mailbox-webfont.woff') format("woff");
font-weight: normal;
font-style: normal;
}
 
.paralax-background {
background: url('/img/scratch-logo.svg') no-repeat center center;
position: fixed;
width: 100%;
height: 480px;
 
/*same height as jumbotron */
top: 0;
left: 0;
z-index: -1;
box-shadow: inset 0px 0px 150px 60px rgba(0, 0, 0, 0.5);
 
/* Blur. */
/*-webkit-filter: blur(1px);
-moz-filter: blur(1px);
-o-filter: blur(1px);
-ms-filter: blur(1px);
filter: blur(1px);*/
}
 
.jumbotron {
height: 480px;
color: red;
padding-top: 120px;
text-align: center;
text-shadow: #EEEE00 0 0 10px;
background: transparent;
font-family: 'Rat Infested Mailbox';
}
 
.trumbowyg-box {
display: block;
position: relative;
height: 100%;
margin: 0;
border: 0;
display: hidden;
font-family: monospace;
}
 
.trumbowyg-editor {
border: 0;
min-height: 480px;
}
 
#editorpanel {
width: 100%;
height: 100%;
padding: 0;
}
 
#box {
border: 1px solid #ddd;
}
/css/text/style.css
@@ -1,46 +1,36 @@
#previews {
display: table;
}
#previews .file-row {
display: table-row;
}
#previews .file-row > div {
display: table-cell;
vertical-align: top;
border-top: 1px solid #ddd;
padding: 1em;
background: #f9f9f9;
}
#previews .file-row:nth-child(odd) {
background: #f9f9f9;
/* border-top: 1em solid #ddd; */
}
display: table; }
#previews .file-row {
display: table-row; }
#previews .file-row > div {
display: table-cell;
vertical-align: top;
border-top: 1px solid #ddd;
padding: 1em;
background: #f9f9f9; }
#previews .file-row:nth-child(odd) {
background: #f9f9f9;
/* border-top: 1em solid #ddd; */ }
 
#editorpanel {
border: 2pt solid #ecf0f1;
}
border: 2pt solid #ecf0f1; }
 
#total-progress {
opacity: 0;
transition: opacity 0.3s linear;
}
opacity: 0;
transition: opacity 0.3s linear; }
 
/* Hide the progress bar when finished */
#previews .file-row.dz-success .progress {
opacity: 0;
transition: opacity 0.3s linear;
}
opacity: 0;
transition: opacity 0.3s linear; }
#previews .file-row .remove {
display: none; }
#previews .file-row.dz-success .start, #previews .file-row.dz-success .cancel {
opacity: 0.3; }
#previews .file-row.dz-success .remove {
display: block; }
 
/* Hide the delete button initially */
#previews .file-row .remove {
display: none;
}
/* Hide the start and cancel buttons and show the delete button */
 
/* Hide the start and cancel buttons and show the delete button */
#previews .file-row.dz-success .start,
#previews .file-row.dz-success .cancel {
opacity: 0.3;
}
#previews .file-row.dz-success .remove {
display: block;
}
/*# sourceMappingURL=style.css.map */
/css/text/style.css.map
@@ -0,0 +1,7 @@
{
"version": 3,
"mappings": "AAAA,SAAU;EACR,OAAO,EAAE,KAAK;EAEd,mBAAU;IACR,OAAO,EAAE,SAAS;IAElB,yBAAM;MACJ,OAAO,EAAE,UAAU;MACnB,cAAc,EAAE,GAAG;MACnB,UAAU,EAAE,cAAc;MAC1B,OAAO,EAAE,GAAG;MACZ,UAAU,EAAE,OAAO;IAGrB,kCAAiB;MACf,UAAU,EAAE,OAAO;MAEnB,iCAAiC;;AAKvC,YAAa;EACX,MAAM,EAAE,iBAAiB;;AAG3B,eAAgB;EACd,OAAO,EAAE,CAAC;EACV,UAAU,EAAE,mBAAmB;;AAGjC,yCAAyC;AAGvC,wCAAuB;EACrB,OAAO,EAAE,CAAC;EACV,UAAU,EAAE,mBAAmB;AAGjC,2BAAQ;EACN,OAAO,EAAE,IAAI;AAIb,6EAAgB;EACd,OAAO,EAAE,GAAG;AAGd,sCAAQ;EACN,OAAO,EAAE,KAAK;;AAKpB,sCAAsC;AAEtC,kEAAkE",
"sources": ["style.scss"],
"names": [],
"file": "style.css"
}
/css/text/style.scss
@@ -0,0 +1,57 @@
#previews {
display: table;
 
.file-row {
display: table-row;
 
> div {
display: table-cell;
vertical-align: top;
border-top: 1px solid #ddd;
padding: 1em;
background: #f9f9f9;
}
 
&:nth-child(odd) {
background: #f9f9f9;
 
/* border-top: 1em solid #ddd; */
}
}
}
 
#editorpanel {
border: 2pt solid #ecf0f1;
}
 
#total-progress {
opacity: 0;
transition: opacity 0.3s linear;
}
 
/* Hide the progress bar when finished */
 
#previews .file-row {
&.dz-success .progress {
opacity: 0;
transition: opacity 0.3s linear;
}
 
.remove {
display: none;
}
 
&.dz-success {
.start, .cancel {
opacity: 0.3;
}
 
.remove {
display: block;
}
}
}
 
/* Hide the delete button initially */
 
/* Hide the start and cancel buttons and show the delete button */