2016-11-14 03:52:20 +11:00
|
|
|
@import './_variables.scss';
|
2016-11-05 21:01:17 +11:00
|
|
|
#app {
|
2016-10-27 04:03:55 +11:00
|
|
|
background-size: cover;
|
|
|
|
background-attachment: fixed;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: 0 50px;
|
2016-11-07 03:43:43 +11:00
|
|
|
min-height: 100vh;
|
2016-10-27 04:03:55 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
h4 {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#content {
|
|
|
|
padding-top: 60px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.text-center {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
font-family: sans-serif;
|
|
|
|
font-size: 14px;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2017-02-18 18:48:35 +11:00
|
|
|
button{
|
|
|
|
border: none;
|
|
|
|
border-radius: 5px;
|
2017-02-24 19:17:41 +11:00
|
|
|
cursor: pointer;
|
2017-06-22 00:15:45 +10:00
|
|
|
border-top: 1px solid rgba(255, 255, 255, 0.2);
|
|
|
|
border-bottom: 1px solid rgba(0, 0, 0, 0.2);
|
|
|
|
box-shadow: 0px 0px 2px black;
|
|
|
|
font-size: 14px;
|
2017-06-22 00:32:41 +10:00
|
|
|
font-family: sans-serif;
|
2017-06-22 00:19:56 +10:00
|
|
|
|
2017-02-19 22:27:59 +11:00
|
|
|
&:hover {
|
2017-06-22 00:15:45 +10:00
|
|
|
box-shadow: 0px 0px 4px rgba(255, 255, 255, 0.3);
|
2017-02-19 22:27:59 +11:00
|
|
|
}
|
2017-08-03 05:09:40 +10:00
|
|
|
|
|
|
|
&:disabled {
|
|
|
|
cursor: not-allowed;
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
2017-02-18 18:48:35 +11:00
|
|
|
}
|
|
|
|
|
2016-10-27 04:03:55 +11:00
|
|
|
.container {
|
|
|
|
display: flex;
|
2016-11-13 06:57:54 +11:00
|
|
|
flex-wrap: wrap;
|
2016-10-27 04:03:55 +11:00
|
|
|
margin: 0;
|
|
|
|
padding: 0 10px 0 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gaps {
|
|
|
|
margin: -1em 0 0 -1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.item {
|
|
|
|
flex: 1;
|
2017-06-04 06:42:54 +10:00
|
|
|
line-height: 21px;
|
|
|
|
height: 21px;
|
2016-10-27 04:03:55 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
.gaps > .item {
|
|
|
|
padding: 1em 0 0 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.auto-size {
|
|
|
|
flex: 1
|
|
|
|
}
|
|
|
|
|
|
|
|
nav {
|
|
|
|
width: 100%;
|
|
|
|
align-items: center;
|
|
|
|
position: fixed;
|
|
|
|
height: 50px;
|
|
|
|
|
2017-01-17 04:57:03 +11:00
|
|
|
.inner-nav {
|
2017-02-17 08:36:09 +11:00
|
|
|
padding-left: 20px;
|
|
|
|
padding-right: 20px;
|
2017-01-17 04:57:03 +11:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2017-02-18 18:48:35 +11:00
|
|
|
flex-basis: 970px;
|
2017-01-17 04:57:03 +11:00
|
|
|
margin: auto;
|
2017-02-17 03:44:36 +11:00
|
|
|
height: 50px;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center;
|
|
|
|
background-size: contain;
|
2017-01-17 04:57:03 +11:00
|
|
|
}
|
2016-10-27 04:03:55 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
main-router {
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status.compact {
|
|
|
|
color: rgba(0, 0, 0, 0.42);
|
|
|
|
font-weight: 300;
|
|
|
|
|
|
|
|
p {
|
|
|
|
margin: 0;
|
|
|
|
font-size: 0.8em
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Panel */
|
|
|
|
|
|
|
|
.panel {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
margin: 0.5em;
|
|
|
|
|
2017-02-24 19:17:41 +11:00
|
|
|
border-radius: 10px;
|
2016-10-27 04:03:55 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
.panel-heading {
|
2017-02-24 19:17:41 +11:00
|
|
|
border-radius: 10px 10px 0 0;
|
2016-10-27 04:03:55 +11:00
|
|
|
background-size: cover;
|
2017-02-27 07:36:54 +11:00
|
|
|
padding: 0.6em 1.0em;
|
|
|
|
text-align: left;
|
2016-10-27 04:03:55 +11:00
|
|
|
font-size: 1.3em;
|
2017-02-19 06:18:00 +11:00
|
|
|
line-height: 24px;
|
2016-10-27 04:03:55 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
.panel-footer {
|
2017-02-24 19:17:41 +11:00
|
|
|
border-radius: 0 0 10px 10px;
|
2016-10-27 04:03:55 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
.panel-body > p {
|
2017-02-18 18:48:35 +11:00
|
|
|
line-height: 18px;
|
2017-01-16 01:44:56 +11:00
|
|
|
padding: 1em;
|
|
|
|
margin: 0;
|
2016-10-27 04:03:55 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#content {
|
|
|
|
margin: auto;
|
2017-02-18 18:48:35 +11:00
|
|
|
max-width: 980px;
|
2017-02-24 19:17:41 +11:00
|
|
|
border-radius: 10px;
|
2017-01-16 05:27:23 +11:00
|
|
|
padding-bottom: 1em;
|
|
|
|
background-color: rgba(0,0,0,0.1);
|
2016-10-27 04:03:55 +11:00
|
|
|
}
|
|
|
|
|
2016-11-25 23:42:33 +11:00
|
|
|
.container > * {
|
|
|
|
min-width: 0px;
|
2016-10-27 04:03:55 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
.fa {
|
2016-11-14 03:52:20 +11:00
|
|
|
color: grey;
|
2016-10-27 04:03:55 +11:00
|
|
|
}
|
|
|
|
|
2016-11-04 03:28:44 +11:00
|
|
|
nav {
|
|
|
|
z-index: 1000;
|
|
|
|
}
|
2016-11-29 00:35:21 +11:00
|
|
|
|
|
|
|
.fade-enter-active, .fade-leave-active {
|
|
|
|
transition: opacity .2s
|
|
|
|
}
|
|
|
|
.fade-enter, .fade-leave-active {
|
|
|
|
opacity: 0
|
|
|
|
}
|
2016-12-03 00:33:03 +11:00
|
|
|
|
|
|
|
.main {
|
2017-04-14 00:01:18 +10:00
|
|
|
flex-basis: 60%;
|
|
|
|
flex-grow: 1;
|
|
|
|
flex-shrink: 1;
|
2016-12-03 00:33:03 +11:00
|
|
|
}
|
2017-01-18 03:27:39 +11:00
|
|
|
|
|
|
|
.sidebar {
|
2017-04-14 00:57:20 +10:00
|
|
|
flex: 0;
|
2017-04-14 00:01:18 +10:00
|
|
|
flex-basis: 35%;
|
2017-01-18 03:27:39 +11:00
|
|
|
}
|
|
|
|
|
2017-04-13 23:17:57 +10:00
|
|
|
.sidebar-flexer {
|
|
|
|
flex: 1;
|
2017-04-14 00:01:18 +10:00
|
|
|
flex-basis: 345px;
|
2017-04-13 23:17:57 +10:00
|
|
|
width: 365px;
|
|
|
|
}
|
|
|
|
|
2017-01-18 03:27:39 +11:00
|
|
|
.mobile-shown {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.panel-switcher {
|
|
|
|
display: none;
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
button {
|
|
|
|
display: block;
|
|
|
|
flex: 1;
|
|
|
|
margin: 0.5em;
|
|
|
|
padding: 0.5em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-13 23:17:57 +10:00
|
|
|
@media all and (min-width: 960px) {
|
|
|
|
.sidebar {
|
|
|
|
overflow: hidden;
|
|
|
|
max-height: 100vh;
|
2017-04-14 06:36:16 +10:00
|
|
|
width: 350px;
|
2017-04-13 23:17:57 +10:00
|
|
|
position: fixed;
|
|
|
|
margin-top: -10px;
|
|
|
|
|
|
|
|
.sidebar-container {
|
|
|
|
height: 96vh;
|
2017-04-14 06:36:16 +10:00
|
|
|
width: 362px;
|
2017-04-13 23:17:57 +10:00
|
|
|
padding-top: 10px;
|
2017-04-14 06:36:16 +10:00
|
|
|
padding-right: 20px;
|
2017-04-13 23:17:57 +10:00
|
|
|
overflow-x: hidden;
|
2017-04-14 00:57:20 +10:00
|
|
|
overflow-y: scroll;
|
2017-04-13 23:17:57 +10:00
|
|
|
}
|
|
|
|
}
|
|
|
|
.sidebar-flexer {
|
|
|
|
max-height: 96vh;
|
2017-04-14 00:01:18 +10:00
|
|
|
flex-shrink: 0;
|
|
|
|
flex-grow: 0;
|
2017-04-13 23:17:57 +10:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-18 03:27:39 +11:00
|
|
|
@media all and (max-width: 959px) {
|
|
|
|
.mobile-hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.panel-switcher {
|
|
|
|
display: flex;
|
|
|
|
}
|
2017-02-20 21:46:20 +11:00
|
|
|
|
|
|
|
.container {
|
|
|
|
padding: 0 0 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.panel {
|
|
|
|
margin: 0.5em 0 0.5em 0;
|
|
|
|
}
|
2017-01-18 03:27:39 +11:00
|
|
|
}
|
2017-02-17 08:25:41 +11:00
|
|
|
|
|
|
|
.item.right {
|
|
|
|
text-align: right;
|
|
|
|
padding-right: 20px;
|
|
|
|
}
|