transferred Code Ocean from original repository to GitHub
This commit is contained in:
17
app/assets/stylesheets/application.css
Normal file
17
app/assets/stylesheets/application.css
Normal file
@@ -0,0 +1,17 @@
|
||||
/*
|
||||
* This is a manifest file that'll be compiled into application.css, which will include all the files
|
||||
* listed below.
|
||||
*
|
||||
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
|
||||
* or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
|
||||
*
|
||||
* You're free to add application-wide styles to this file and they'll appear at the bottom of the
|
||||
* compiled file so the styles you add here take precedence over styles defined in any styles
|
||||
* defined in the other CSS/SCSS files in this directory. It is generally better to create a new
|
||||
* file per style scope.
|
||||
*
|
||||
*= require_tree .
|
||||
*= require_tree ../../../lib
|
||||
*= require_tree ../../../vendor
|
||||
*= require_self
|
||||
*/
|
50
app/assets/stylesheets/base.css.scss
Normal file
50
app/assets/stylesheets/base.css.scss
Normal file
@@ -0,0 +1,50 @@
|
||||
h1 {
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
|
||||
i.fa, i.glyphicon {
|
||||
margin-right: 0.5em;
|
||||
}
|
||||
|
||||
pre {
|
||||
background-color: #FAFAFA;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
span.caret {
|
||||
margin-left: 0.5em;
|
||||
}
|
||||
|
||||
.progress {
|
||||
margin: 0;
|
||||
|
||||
.progress-bar {
|
||||
line-height: initial;
|
||||
}
|
||||
}
|
||||
|
||||
.attribute-row + .attribute-row{
|
||||
margin-top: 0.5em;
|
||||
}
|
||||
|
||||
.badge {
|
||||
font-size: 100%;
|
||||
}
|
||||
|
||||
.disabled {
|
||||
cursor: default;
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
.empty {
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
.flash {
|
||||
font-size: 100%;
|
||||
}
|
||||
|
||||
.markdown {
|
||||
height: 200px;
|
||||
}
|
69
app/assets/stylesheets/editor.css.scss
Normal file
69
app/assets/stylesheets/editor.css.scss
Normal file
@@ -0,0 +1,69 @@
|
||||
button i.fa-spin {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.editor {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.frame {
|
||||
display: none;
|
||||
height: 400px;
|
||||
|
||||
audio, img, video {
|
||||
max-width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
#editor-buttons {
|
||||
background-color: #008CBA;
|
||||
margin-top: 1em;
|
||||
width: 100%;
|
||||
|
||||
button {
|
||||
font-size: 80%;
|
||||
}
|
||||
|
||||
button, .btn-group {
|
||||
width: 25%;
|
||||
}
|
||||
|
||||
.btn-group {
|
||||
button {
|
||||
width: 75%;
|
||||
}
|
||||
|
||||
button.dropdown-toggle {
|
||||
width: 25%;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#files {
|
||||
overflow: scroll;
|
||||
}
|
||||
|
||||
#hint {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#outputInformation {
|
||||
#output {
|
||||
max-height: 500px;
|
||||
overflow: auto;
|
||||
margin: 2em 0;
|
||||
|
||||
p {
|
||||
margin: 0.5em;
|
||||
}
|
||||
|
||||
pre + pre {
|
||||
margin-top: 1em;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#results {
|
||||
display: none;
|
||||
}
|
13
app/assets/stylesheets/exercises.css.scss
Normal file
13
app/assets/stylesheets/exercises.css.scss
Normal file
@@ -0,0 +1,13 @@
|
||||
code {
|
||||
background-color: #F8F8F8 !important;
|
||||
max-height: 100px;
|
||||
overflow: scroll;
|
||||
}
|
||||
|
||||
input[type='file'] {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#exercise_template_code {
|
||||
font-family: monospace;
|
||||
}
|
6
app/assets/stylesheets/flowrdata.css.scss
Normal file
6
app/assets/stylesheets/flowrdata.css.scss
Normal file
@@ -0,0 +1,6 @@
|
||||
#flowrHint {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#flowrOutput {
|
||||
}
|
25
app/assets/stylesheets/forms.css.scss
Normal file
25
app/assets/stylesheets/forms.css.scss
Normal file
@@ -0,0 +1,25 @@
|
||||
.alternative-input {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.chosen-container {
|
||||
width: 100% !important;
|
||||
}
|
||||
|
||||
.code-field {
|
||||
font-family: monospace;
|
||||
}
|
||||
|
||||
.filter-form {
|
||||
.form-group:not(:last-child) {
|
||||
margin-right: 1em;
|
||||
}
|
||||
|
||||
input, select {
|
||||
min-width: 200px !important;
|
||||
}
|
||||
}
|
||||
|
||||
.toggle-input {
|
||||
font-size: 80%;
|
||||
}
|
Reference in New Issue
Block a user