2016-12-13 12:42:10 +00:00
|
|
|
.admin-wrapper {
|
2017-01-28 02:56:10 +00:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
2016-12-13 12:42:10 +00:00
|
|
|
height: 100%;
|
2017-01-28 02:56:10 +00:00
|
|
|
|
|
|
|
.sidebar-wrapper {
|
|
|
|
flex: 1;
|
|
|
|
height: 100%;
|
|
|
|
background: $color1;
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
|
|
|
}
|
2016-12-13 12:42:10 +00:00
|
|
|
|
|
|
|
.sidebar {
|
|
|
|
width: 240px;
|
|
|
|
height: 100%;
|
2017-01-28 02:56:10 +00:00
|
|
|
padding: 20px 0;
|
2016-12-13 12:42:10 +00:00
|
|
|
|
|
|
|
.logo {
|
|
|
|
display: block;
|
|
|
|
margin: 40px auto;
|
|
|
|
width: 100px;
|
|
|
|
height: 100px;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul {
|
|
|
|
list-style: none;
|
2017-01-28 02:56:10 +00:00
|
|
|
border-radius: 4px 0 0 4px;
|
|
|
|
overflow: hidden;
|
2016-12-13 12:42:10 +00:00
|
|
|
|
|
|
|
a {
|
|
|
|
display: block;
|
|
|
|
padding: 15px 25px;
|
2017-01-23 15:01:46 +00:00
|
|
|
color: rgba($color5, 0.7);
|
2016-12-13 12:42:10 +00:00
|
|
|
text-decoration: none;
|
|
|
|
transition: all 200ms linear;
|
2017-01-28 02:56:10 +00:00
|
|
|
border-radius: 4px 0 0 4px;
|
2016-12-13 12:42:10 +00:00
|
|
|
|
|
|
|
i.fa {
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
2017-01-23 15:01:46 +00:00
|
|
|
color: $color5;
|
|
|
|
background-color: darken($color1, 5%);
|
2016-12-13 12:42:10 +00:00
|
|
|
transition: all 100ms linear;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.selected {
|
2017-01-28 02:56:10 +00:00
|
|
|
background: darken($color1, 2%);
|
|
|
|
border-radius: 4px 0 0 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ul {
|
|
|
|
background: darken($color1, 4%);
|
|
|
|
border-radius: 0 0 0 4px;
|
|
|
|
|
|
|
|
a {
|
|
|
|
border: 0;
|
2016-12-13 12:42:10 +00:00
|
|
|
|
2017-01-28 02:56:10 +00:00
|
|
|
&.selected {
|
|
|
|
color: $color5;
|
|
|
|
background-color: $color4;
|
|
|
|
border-bottom: 0;
|
|
|
|
border-radius: 0;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-color: lighten($color4, 5%);
|
|
|
|
}
|
2016-12-13 12:42:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-28 02:56:10 +00:00
|
|
|
.content-wrapper {
|
|
|
|
flex: 2;
|
2017-02-14 23:22:58 +00:00
|
|
|
overflow: auto;
|
2017-01-28 02:56:10 +00:00
|
|
|
}
|
|
|
|
|
2016-12-13 12:42:10 +00:00
|
|
|
.content {
|
2017-01-28 02:56:10 +00:00
|
|
|
max-width: 700px;
|
|
|
|
padding: 20px 15px;
|
|
|
|
padding-top: 60px;
|
|
|
|
padding-left: 25px;
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
color: $color2;
|
|
|
|
font-size: 24px;
|
|
|
|
line-height: 28px;
|
|
|
|
font-weight: 400;
|
|
|
|
margin-bottom: 40px;
|
|
|
|
}
|
|
|
|
|
2017-02-16 23:42:52 +00:00
|
|
|
& > p {
|
2017-01-28 02:56:10 +00:00
|
|
|
font-size: 14px;
|
|
|
|
line-height: 18px;
|
|
|
|
color: $color2;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
|
|
|
strong {
|
|
|
|
color: $color5;
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
}
|
2017-02-16 23:42:52 +00:00
|
|
|
|
|
|
|
hr {
|
|
|
|
margin: 20px 0;
|
|
|
|
border: 0;
|
|
|
|
background: transparent;
|
|
|
|
border-bottom: 1px solid $color1;
|
|
|
|
}
|
2017-01-28 02:56:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.simple_form {
|
|
|
|
max-width: 400px;
|
2016-12-13 12:42:10 +00:00
|
|
|
}
|
2017-01-28 20:57:03 +00:00
|
|
|
|
|
|
|
@media screen and (max-width: 600px) {
|
|
|
|
display: block;
|
|
|
|
overflow-y: auto;
|
|
|
|
|
|
|
|
.sidebar-wrapper, .content-wrapper {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar {
|
|
|
|
width: 100%;
|
|
|
|
padding: 10px 0;
|
|
|
|
height: auto;
|
|
|
|
|
|
|
|
.logo {
|
|
|
|
margin: 20px auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.content {
|
|
|
|
padding-top: 20px;
|
|
|
|
}
|
|
|
|
}
|
2016-12-13 12:42:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.filters {
|
|
|
|
display: flex;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
|
|
|
.filter-subset {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
margin-right: 40px;
|
|
|
|
|
|
|
|
ul {
|
|
|
|
margin-top: 5px;
|
|
|
|
list-style: none;
|
|
|
|
|
|
|
|
li {
|
|
|
|
display: inline-block;
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
strong {
|
|
|
|
font-weight: 500;
|
|
|
|
text-transform: uppercase;
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
display: inline-block;
|
2017-01-23 15:01:46 +00:00
|
|
|
color: rgba($color5, 0.7);
|
2016-12-13 12:42:10 +00:00
|
|
|
text-decoration: none;
|
|
|
|
text-transform: uppercase;
|
|
|
|
font-size: 12px;
|
|
|
|
font-weight: 500;
|
2017-01-23 15:01:46 +00:00
|
|
|
border-bottom: 2px solid $color1;
|
2016-12-13 12:42:10 +00:00
|
|
|
|
|
|
|
&:hover {
|
2017-01-23 15:01:46 +00:00
|
|
|
color: $color5;
|
|
|
|
border-bottom: 2px solid lighten($color1, 5%);
|
2016-12-13 12:42:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&.selected {
|
2017-01-23 15:01:46 +00:00
|
|
|
color: $color4;
|
|
|
|
border-bottom: 2px solid $color4;
|
2016-12-13 12:42:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-02-16 23:42:52 +00:00
|
|
|
|
|
|
|
.report-accounts {
|
|
|
|
display: flex;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.report-accounts__item {
|
|
|
|
flex: 1 1 0;
|
2017-02-17 01:05:15 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2017-02-16 23:42:52 +00:00
|
|
|
|
|
|
|
& > strong {
|
|
|
|
display: block;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 18px;
|
|
|
|
color: $color2;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
2017-02-17 01:05:15 +00:00
|
|
|
|
|
|
|
.account-card {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
}
|
2017-02-16 23:42:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.report-status {
|
|
|
|
display: flex;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
|
|
|
.activity-stream {
|
2017-02-17 01:05:15 +00:00
|
|
|
flex: 2 0 0;
|
2017-02-16 23:42:52 +00:00
|
|
|
margin-right: 20px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.report-status__actions {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
}
|