mirror of
https://github.com/alice-lg/alice-lg.git
synced 2024-05-11 05:55:03 +00:00
102 lines
1.3 KiB
SCSS
102 lines
1.3 KiB
SCSS
/**
|
|
* Main Layout Scss File
|
|
*/
|
|
|
|
@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:700,400,300);
|
|
|
|
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 {
|
|
flex: 1 0;
|
|
background: #f4f5f7;
|
|
background-image: url('../img/alicebg.png');
|
|
background-position: 90% 100%;
|
|
background-attachment: fixed;
|
|
background-repeat: no-repeat;
|
|
padding: 0px;
|
|
margin: 0px;
|
|
}
|
|
|
|
.page-nav {
|
|
flex: 0 0 250px;
|
|
order: -1;
|
|
background: #f8f8f8;
|
|
// border-right: 1px solid #ccc;
|
|
}
|
|
|
|
.page-sidebar {
|
|
flex: 0 0 220px;
|
|
background: #272634;
|
|
// border-left: 1px solid #ccc;
|
|
}
|
|
|
|
header, footer {
|
|
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;
|
|
}
|
|
|