2017-05-16 13:34:00 +02:00
|
|
|
/**
|
|
|
|
* Main Layout Scss File
|
|
|
|
*/
|
|
|
|
|
2018-08-03 12:36:40 +02:00
|
|
|
@import url('../fonts/source-sans-pro.css');
|
2017-05-16 13:34:00 +02:00
|
|
|
|
|
|
|
body, html {
|
|
|
|
font-family: "Source Sans Pro";
|
|
|
|
margin: 0px;
|
|
|
|
padding: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
body,
|
|
|
|
.page {
|
|
|
|
display: flex;
|
|
|
|
min-height: 100vh;
|
|
|
|
flex-direction: row;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#app {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.page header {
|
|
|
|
margin-top: 50px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.page-body {
|
|
|
|
display: flex;
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.page-content {
|
2018-10-08 15:16:50 +02:00
|
|
|
display: flex;
|
2017-05-16 13:34:00 +02:00
|
|
|
flex: 1 0;
|
2018-10-08 15:16:50 +02:00
|
|
|
flex-direction: column;
|
2017-05-16 13:34:00 +02:00
|
|
|
background: #f4f5f7;
|
2017-05-22 19:19:44 +02:00
|
|
|
background-image: url('../img/alicebg.png');
|
2017-05-23 14:08:54 +02:00
|
|
|
background-position: 90% 100%;
|
2017-05-22 19:19:44 +02:00
|
|
|
background-attachment: fixed;
|
|
|
|
background-repeat: no-repeat;
|
2017-05-16 13:34:00 +02:00
|
|
|
padding: 0px;
|
|
|
|
margin: 0px;
|
|
|
|
}
|
|
|
|
|
2018-10-08 15:16:50 +02:00
|
|
|
.main-content-wrapper {
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.page-footer {
|
|
|
|
flex: 0 1;
|
|
|
|
padding: 3px;
|
|
|
|
|
|
|
|
a {
|
|
|
|
font-size: 12px;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-16 13:34:00 +02:00
|
|
|
.page-nav {
|
|
|
|
flex: 0 0 250px;
|
|
|
|
order: -1;
|
|
|
|
background: #f8f8f8;
|
|
|
|
// border-right: 1px solid #ccc;
|
|
|
|
}
|
|
|
|
|
|
|
|
.page-sidebar {
|
2018-10-15 14:55:58 +02:00
|
|
|
flex: 0 0 195px;
|
2017-05-16 13:34:00 +02:00
|
|
|
background: #272634;
|
|
|
|
// border-left: 1px solid #ccc;
|
|
|
|
}
|
|
|
|
|
2018-10-15 14:55:58 +02:00
|
|
|
@media (min-width: 1300px) {
|
|
|
|
.page-sidebar {
|
|
|
|
flex: 0 0 230px;
|
|
|
|
background: #272634;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-08 15:16:50 +02:00
|
|
|
header {
|
2017-05-16 13:34:00 +02:00
|
|
|
flex: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.navbar {
|
|
|
|
box-shadow: none;
|
|
|
|
border-bottom: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.page-header {
|
|
|
|
line-height: 59px;
|
|
|
|
background: white;
|
|
|
|
margin: 0px;
|
|
|
|
height: 59px;
|
|
|
|
|
|
|
|
box-shadow: 0px 1px 4px #eee;
|
|
|
|
}
|
|
|
|
|
|
|
|
.table-protocols {
|
|
|
|
.protocol-state-error {
|
|
|
|
display: block;
|
|
|
|
font-size: 11px;
|
|
|
|
color: orange;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.loading-indicator {
|
|
|
|
text-align: center;
|
|
|
|
width: 50px;
|
|
|
|
margin: 0px auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.details-main {
|
|
|
|
.help-block {
|
|
|
|
margin: 20px;
|
|
|
|
padding: 10px 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
margin-right: 0px;
|
|
|
|
margin-top: 20px;
|
2018-10-15 14:55:58 +02:00
|
|
|
|
|
|
|
&.row {
|
|
|
|
margin: 0px;
|
|
|
|
}
|
2017-05-16 13:34:00 +02:00
|
|
|
}
|
|
|
|
|
2018-10-08 15:16:50 +02:00
|
|
|
|