Skip to content

Commit

Permalink
misc
Browse files Browse the repository at this point in the history
  • Loading branch information
Gerd Wagner authored and Gerd Wagner committed Oct 6, 2017
1 parent c8412f1 commit 3678ef5
Show file tree
Hide file tree
Showing 14 changed files with 1,900 additions and 419 deletions.
7 changes: 7 additions & 0 deletions .jshintrc
@@ -0,0 +1,7 @@
{
"undef": true,
"unused": true,
"globals": {
"oBJECTvIEW": true
}
}
91 changes: 91 additions & 0 deletions css/basic-styles.css
@@ -0,0 +1,91 @@
/* In addition to vIEW.css */

body > footer {
margin-top: 3em;
font-size: smaller;
}
#errors {
padding-left: 5px;
outline: red solid;
}
.error {
color: #C0392B;
}

#simurenainfo {
font-size: 90%;
}
body>header>h1 {
margin-top: 0.2em;
}
body>header>h1>div {
display: inline-block;
margin-left: 2em;
font-size: 45%;
width: 5em;
}

table {
empty-cells: show;
border-collapse: collapse;
}
/* Styles for DOM-Grid */
table#space-view {
table-layout: fixed;
}
/* table[id="space-view"] corresponds to table#space-view, but helps to avoid cascade/specificity issues */
table[id="space-view"] td {
padding: 1px;
text-align:center;
vertical-align: middle;
}

table[id="space-view"] td div.object-view {
display: block;
padding: 0;
margin: 0;
border-radius: 0;
min-width: 3px;
min-height: 3px;
width: 100%;
height: 100%;
font-size: 90%;
}

/*canvas {
margin: 0.5em 0;
width: 100% !important;
}*/
.expandablePanel {
outline: solid grey;
padding: 5px;
margin: 1em 0;
}
.expandablePanel > h2 {
font-size: 1.5em;
color: grey;
margin: 0 0;
}
.expandablePanel > h2 > button {
font-size: smaller;
margin-right: 1em;
}

form[id="expost-statistics"] {
outline: solid grey;
padding: 5px;
margin: 1em 0;
}
form[id="expost-statistics"] h2 {
font-size: 110%;
margin-bottom: 0.4em;
}
form[id="expost-statistics"] h3 {
font-size: 100%;
margin-top: 0.3em;
margin-bottom: 0.2em;
}
div[id="time-series-chart"] {
width: 100%;
height: 400px;
}

0 comments on commit 3678ef5

Please sign in to comment.