mirror of
https://git.rwth-aachen.de/acs/public/villas/web/
synced 2025-03-23 00:00:02 +01:00
152 lines
2.3 KiB
CSS
152 lines
2.3 KiB
CSS
/**
|
|
* File: app.css
|
|
* Author: Markus Grigull <mgrigull@eonerc.rwth-aachen.de>
|
|
* Date: 26.06.2016
|
|
* Copyright: 2016, Institute for Automation of Complex Power Systems, EONERC
|
|
* This file is part of VILLASweb. All Rights Reserved. Proprietary and confidential.
|
|
* Unauthorized copying of this file, via any medium is strictly prohibited.
|
|
**********************************************************************************/
|
|
|
|
@import 'plots.css';
|
|
@import 'models.css';
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
/**
|
|
* Application skeleton
|
|
*/
|
|
.ember-application {
|
|
min-width: 800px;
|
|
|
|
background: #ddd;
|
|
color: #4d4d4d;
|
|
|
|
font: 16px 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
|
font-weight: 300;
|
|
font-smoothing: antialiased;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-font-smoothing: antialiased;
|
|
}
|
|
|
|
header {
|
|
width: 100%;
|
|
height: 50px;
|
|
|
|
padding: 10px 0 0 0;
|
|
|
|
color: #fff;
|
|
background-color: #151;
|
|
}
|
|
|
|
header h1 {
|
|
width: 100%;
|
|
|
|
text-align: center
|
|
}
|
|
|
|
footer {
|
|
width: 100%;
|
|
|
|
color: #666;
|
|
|
|
margin-top: 20px;
|
|
|
|
text-align: center;
|
|
|
|
clear: both;
|
|
}
|
|
|
|
/**
|
|
* Main layout
|
|
*/
|
|
#main-menu {
|
|
float: left;
|
|
|
|
width: 125px;
|
|
|
|
background-color: #fff;
|
|
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2),
|
|
0 9px 18px 0 rgba(0, 0, 0, 0.1);
|
|
|
|
margin: 20px 0 0 20px;
|
|
padding: 20px 20px 20px 30px;
|
|
}
|
|
|
|
#wrapper {
|
|
min-height: 100px;
|
|
|
|
background-color: #fff;
|
|
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2),
|
|
0 9px 18px 0 rgba(0, 0, 0, 0.1);
|
|
|
|
margin: 20px 20px 20px 220px;
|
|
padding: 20px;
|
|
}
|
|
|
|
/**
|
|
* Login layout
|
|
*/
|
|
#login-container {
|
|
width: 320px;
|
|
height: 180px;
|
|
|
|
background-color: #fff;
|
|
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2),
|
|
0 9px 18px 0 rgba(0, 0, 0, 0.1);
|
|
|
|
margin: 80px auto;
|
|
padding: 0px;
|
|
}
|
|
|
|
#login-container h1 {
|
|
background-color: #cdcdcd;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 24;
|
|
|
|
padding: 10px 0;
|
|
}
|
|
|
|
#login {
|
|
|
|
}
|
|
|
|
#login-form {
|
|
padding: 20px 20px;
|
|
}
|
|
|
|
/**
|
|
* Visualization
|
|
*/
|
|
.draggableDropzone {
|
|
display: block;
|
|
|
|
min-height: 400px;
|
|
|
|
border: 3px dashed #aaa;
|
|
|
|
&.activated {
|
|
border-color: #2ecc71;
|
|
}
|
|
&.deactivated {
|
|
border-color: #e1e1e1;
|
|
}
|
|
}
|
|
|
|
.draggableItem[draggable=true] {
|
|
display: inline-block;
|
|
background: #e1e1e1;
|
|
cursor: move;
|
|
|
|
padding: 5px 10px;
|
|
|
|
border: 1px solid gray;
|
|
|
|
&:hover {
|
|
background-color: #aaa;
|
|
}
|
|
}
|