mirror of
https://github.com/publiclab/image-sequencer.git
synced 2025-12-11 19:00:00 +01:00
* meta-modules in node Signed-off-by: tech4GT <varun.gupta1798@gmail.com> * meta-modules in browser Signed-off-by: tech4GT <varun.gupta1798@gmail.com> * update docs Signed-off-by: tech4GT <varun.gupta1798@gmail.com> * more doc Signed-off-by: tech4GT <varun.gupta1798@gmail.com> * fix typo Signed-off-by: tech4GT <varun.gupta1798@gmail.com> * update docs and sample meta-module Signed-off-by: tech4GT <varun.gupta1798@gmail.com> * add dynamic modules CLI from npm Signed-off-by: tech4GT <varun.gupta1798@gmail.com> * update Signed-off-by: tech4GT <varun.gupta1798@gmail.com> * meta-modules and sequence saving completed Signed-off-by: tech4GT <varun.gupta1798@gmail.com> * add docs Signed-off-by: tech4GT <varun.gupta1798@gmail.com> * update docs Signed-off-by: tech4GT <varun.gupta1798@gmail.com> * fixed test Signed-off-by: tech4GT <varun.gupta1798@gmail.com>
113 lines
2.1 KiB
CSS
113 lines
2.1 KiB
CSS
/* https://github.com/theleagueof/league-spartan */
|
|
@font-face {
|
|
font-family: 'League Spartan';
|
|
src: url('https://raw.githubusercontent.com/theleagueof/league-spartan/master/_webfonts/leaguespartan-bold.eot');
|
|
src: url('https://raw.githubusercontent.com/theleagueof/league-spartan/master/_webfonts/leaguespartan-bold.eot?#iefix') format('embedded-opentype'),
|
|
url('https://raw.githubusercontent.com/theleagueof/league-spartan/master/_webfonts/leaguespartan-bold.woff2') format('woff2'),
|
|
url('https://raw.githubusercontent.com/theleagueof/league-spartan/master/_webfonts/leaguespartan-bold.woff') format('woff'),
|
|
url('https://raw.githubusercontent.com/theleagueof/league-spartan/master/_webfonts/leaguespartan-bold.ttf') format('truetype'),
|
|
url('https://raw.githubusercontent.com/theleagueof/league-spartan/master/_webfonts/leaguespartan-bold.svg#league_spartanbold') format('svg');
|
|
font-weight: bold;
|
|
font-style: normal;
|
|
}
|
|
|
|
body {
|
|
padding: 20px;
|
|
margin: 0 auto 200px;
|
|
max-width: 1000px;
|
|
background: #f8f8fa;
|
|
}
|
|
|
|
h1 {
|
|
font-family: 'League Spartan';
|
|
color: #445;
|
|
}
|
|
|
|
.header {
|
|
text-align: center;
|
|
}
|
|
|
|
.nomargin {
|
|
margin: 0 !important;
|
|
}
|
|
|
|
#dropzone {
|
|
padding: 30px;
|
|
margin: 0 20% 30px;
|
|
border: 4px dashed #ccc;
|
|
border-radius: 8px;
|
|
text-align: center;
|
|
color: #444;
|
|
}
|
|
|
|
.hover {
|
|
background: #eee;
|
|
}
|
|
|
|
#dropzone input {
|
|
max-width: 100%;
|
|
}
|
|
|
|
.step {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.step .img-thumbnail {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.details {
|
|
border-top: 3px solid #444;
|
|
padding-left: 6px;
|
|
}
|
|
|
|
.details h3 {
|
|
font-family: monospace;
|
|
margin-top: 12px;
|
|
font-size: 1.3em;
|
|
}
|
|
|
|
.det {
|
|
padding: 10px 16px;
|
|
text-decoration: italic;
|
|
}
|
|
|
|
.tools {
|
|
margin: 10px 0;
|
|
}
|
|
|
|
.load {
|
|
padding: 30px;
|
|
background: #eee;
|
|
border-radius: 8px;
|
|
text-align: center;
|
|
font-size: 2em;
|
|
color: #444;
|
|
}
|
|
|
|
#addStep {
|
|
max-width: 500px;
|
|
margin: 20px auto;
|
|
}
|
|
|
|
#addStep .labels {
|
|
text-align: right;
|
|
padding: 6px;
|
|
margin: 2px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
@media (max-width:768px) {
|
|
#addStep .labels {
|
|
text-align: left;
|
|
}
|
|
}
|
|
|
|
#addStep .add {
|
|
text-align: center;
|
|
margin: 10px;
|
|
}
|
|
#save-seq {
|
|
display: block;
|
|
margin: 0 auto;
|
|
} |