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