mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-30 00:00:11 +01:00
67 lines
No EOL
645 B
CSS
67 lines
No EOL
645 B
CSS
html, body {
|
|
margin: 0;
|
|
padding: 0;
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Helvetica Neue', sans-serif;
|
|
}
|
|
|
|
#wrapper {
|
|
|
|
}
|
|
|
|
#header {
|
|
padding: 20px;
|
|
border-bottom: 2px solid gray;
|
|
}
|
|
|
|
#header h1 {
|
|
margin: 0;
|
|
}
|
|
|
|
#footer {
|
|
padding: 1em;
|
|
border-top: 2px solid gray;
|
|
}
|
|
|
|
#container {
|
|
padding: 20px;
|
|
}
|
|
|
|
#slider {
|
|
width: 300px;
|
|
display: inline-block;
|
|
}
|
|
|
|
.logo {
|
|
float: right;
|
|
}
|
|
|
|
.plot-container {
|
|
width: 100%;
|
|
height: 400px;
|
|
}
|
|
|
|
.plot-placeholder {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.node-selector li {
|
|
display:inline;
|
|
padding: 0 0.5em;
|
|
}
|
|
|
|
li.active {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.off {
|
|
background-color: red;
|
|
}
|
|
|
|
.on {
|
|
background-color: green;
|
|
} |