2014-09-04 18:51:32 -06:00
|
|
|
$sidebar-width: 20%;
|
|
|
|
|
$sidebar-padding: 2rem;
|
|
|
|
|
$topbar-height: 4.2rem;
|
2014-09-08 18:32:13 -06:00
|
|
|
$update-height: 3rem;
|
2014-09-04 18:51:32 -06:00
|
|
|
|
|
|
|
|
#admin-sidebar {
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 0;
|
|
|
|
|
top: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
width: $sidebar-width;
|
|
|
|
|
|
|
|
|
|
background: $accent-bg;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#admin-logo {
|
|
|
|
|
background: $darker-accent-bg;
|
|
|
|
|
height: $topbar-height;
|
|
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
margin: 0;
|
|
|
|
|
@extend %vertical-align;
|
|
|
|
|
text-align: center;
|
|
|
|
|
font-size: 1.2rem;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#admin-user-details {
|
|
|
|
|
padding: $sidebar-padding;
|
|
|
|
|
border-bottom: 1px solid $darker-accent-bg;
|
|
|
|
|
|
|
|
|
|
img {
|
|
|
|
|
border-radius: 100%;
|
|
|
|
|
float: left;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.admin-user-names {
|
|
|
|
|
margin-left: 45px;
|
|
|
|
|
|
|
|
|
|
h4, h5 {
|
|
|
|
|
margin: 0;
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
line-height: 1.3;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h5 {
|
|
|
|
|
font-family: $font-family-default;
|
|
|
|
|
color: lighten($accent-bg,55%);
|
|
|
|
|
font-size: 0.9rem;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#admin-menu {
|
|
|
|
|
display: block;
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
list-style: none;
|
|
|
|
|
|
|
|
|
|
|
2014-09-05 22:27:30 -06:00
|
|
|
|
|
|
|
|
|
2014-09-04 18:51:32 -06:00
|
|
|
li {
|
|
|
|
|
font-family: $font-family-header;
|
|
|
|
|
|
2014-09-05 22:27:30 -06:00
|
|
|
.badge {
|
|
|
|
|
background-color: darken($accent-bg, 10%);
|
|
|
|
|
color: shade($accent-fg,10%);
|
|
|
|
|
float: right;
|
|
|
|
|
margin-right:1rem;
|
|
|
|
|
}
|
2014-09-04 18:51:32 -06:00
|
|
|
|
|
|
|
|
a {
|
|
|
|
|
@include transition(all 0.2s ease);
|
|
|
|
|
display: block;
|
|
|
|
|
padding-left: 25px;
|
|
|
|
|
padding-top: 0.7rem;
|
|
|
|
|
padding-bottom: 0.7rem;
|
|
|
|
|
|
|
|
|
|
color: lighten($accent-bg,65%);
|
|
|
|
|
|
|
|
|
|
i {
|
|
|
|
|
@include transition(all 0.2s ease);
|
|
|
|
|
color: lighten($accent-bg,55%);
|
|
|
|
|
margin-right: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
background: $darker-accent-bg;
|
|
|
|
|
// padding-left: 30px;
|
|
|
|
|
color: $accent-fg;
|
|
|
|
|
|
|
|
|
|
i {
|
|
|
|
|
font-size: 1.2rem;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.selected {
|
|
|
|
|
a {
|
|
|
|
|
background: $page-bg;
|
|
|
|
|
color: $accent-fg;
|
|
|
|
|
padding-left: 16px;
|
|
|
|
|
border-left: 9px solid $secondary-accent-bg;
|
|
|
|
|
|
|
|
|
|
i {
|
|
|
|
|
color: lighten($accent-bg,70%);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#admin-main {
|
|
|
|
|
margin-left: $sidebar-width;
|
|
|
|
|
|
2014-09-12 17:52:09 -06:00
|
|
|
.hint:after, [data-hint]:after {
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-08 18:32:13 -06:00
|
|
|
h1 {
|
|
|
|
|
margin: 0;
|
|
|
|
|
font-size: 1.5rem;
|
|
|
|
|
text-align: left;
|
|
|
|
|
letter-spacing: -1px;
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-04 18:51:32 -06:00
|
|
|
.titlebar {
|
|
|
|
|
height: $topbar-height;
|
|
|
|
|
|
|
|
|
|
padding: 0 $padding-default;
|
|
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
|
@extend %vertical-align;
|
|
|
|
|
}
|
2014-09-08 18:32:13 -06:00
|
|
|
|
|
|
|
|
.button-bar {
|
|
|
|
|
@extend %vertical-align;
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-10 14:49:57 -06:00
|
|
|
.tab-bar {
|
|
|
|
|
background: $accent-bg;
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
list-style: none;
|
|
|
|
|
|
|
|
|
|
font-family: $font-family-header;
|
|
|
|
|
|
|
|
|
|
li {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
&.active {
|
|
|
|
|
span, a {
|
|
|
|
|
background: $content-bg;
|
|
|
|
|
color: $content-fg;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
span, a {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
padding: 0.7rem 4rem;
|
|
|
|
|
color: lighten($accent-bg,65%);
|
|
|
|
|
&:hover {
|
|
|
|
|
color: $white;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-08 18:32:13 -06:00
|
|
|
.grav-update {
|
|
|
|
|
height: $update-height;
|
|
|
|
|
padding: 0 $padding-default;
|
|
|
|
|
background: $info-bg;
|
|
|
|
|
|
|
|
|
|
.button {
|
|
|
|
|
margin-left: 1rem;
|
|
|
|
|
line-height: 1.5;
|
|
|
|
|
@include button-color(shade($info-bg, 20%));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
p {
|
|
|
|
|
line-height: $update-height;
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
i {
|
|
|
|
|
padding-right: 0.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.less {
|
|
|
|
|
color: rgba($white,0.75);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.grav-update + .content-padding {
|
|
|
|
|
top: $topbar-height + $update-height;
|
2014-09-04 18:51:32 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.content-padding {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: $topbar-height;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
left: $sidebar-width;
|
|
|
|
|
right: 0;
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
padding: 2.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.admin-block {
|
|
|
|
|
background: $content-bg;
|
|
|
|
|
color: $content-fg;
|
2014-09-08 18:32:13 -06:00
|
|
|
padding: 2rem 0;
|
|
|
|
|
|
|
|
|
|
h1 {
|
2014-09-10 12:24:09 -06:00
|
|
|
color: $page-bg;
|
2014-09-08 18:32:13 -06:00
|
|
|
padding: 0 $padding-default 0.5rem;
|
|
|
|
|
margin: 0 0 1rem;
|
|
|
|
|
border-bottom: 3px solid darken($content-bg, 5%);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.button-bar {
|
|
|
|
|
margin-right: $padding-default;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#admin-dashboard {
|
|
|
|
|
|
|
|
|
|
@include clearfix;
|
|
|
|
|
|
|
|
|
|
.dashboard-item {
|
|
|
|
|
float: left;
|
|
|
|
|
width: 50%;
|
|
|
|
|
margin-bottom: 2.5rem;
|
|
|
|
|
|
|
|
|
|
> div {
|
|
|
|
|
padding: 1rem 2rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.button-bar {
|
|
|
|
|
margin: 1rem -2rem -1rem;
|
|
|
|
|
height: 70px;
|
|
|
|
|
padding: 0 1rem;
|
|
|
|
|
float: none;
|
|
|
|
|
.button {
|
|
|
|
|
@extend %vertical-align;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.dashboard-left {
|
|
|
|
|
padding-right: 1.25rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.dashboard-right {
|
|
|
|
|
padding-left: 1.25rem;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#updates {
|
|
|
|
|
|
|
|
|
|
p {
|
|
|
|
|
text-align: center;
|
|
|
|
|
color: rgba($white,0.95);
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.updates-chart {
|
|
|
|
|
width: 50%;
|
|
|
|
|
float: left;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.chart-wrapper {
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.backups-chart {
|
|
|
|
|
position: relative;
|
|
|
|
|
width: 50%;
|
|
|
|
|
float: left;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.numeric {
|
|
|
|
|
display: block;
|
|
|
|
|
position: absolute;
|
|
|
|
|
width: 100%;
|
|
|
|
|
text-align: center;
|
|
|
|
|
font-size: 1.7rem;
|
|
|
|
|
line-height: 1;
|
|
|
|
|
@extend %vertical-align;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
em {
|
|
|
|
|
display:block;
|
|
|
|
|
font-style: normal;
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
color: rgba($white, .85);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.admin-update-charts {
|
|
|
|
|
@include clearfix;
|
|
|
|
|
min-height: 191px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.button {
|
|
|
|
|
margin-left: 0.5rem;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#popularity {
|
|
|
|
|
p {
|
|
|
|
|
text-align: center;
|
|
|
|
|
color: rgba($white,0.95);
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
.button-bar {
|
|
|
|
|
height: 100px;
|
|
|
|
|
padding: 0 1rem;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
.stat {
|
|
|
|
|
@extend %vertical-align;
|
|
|
|
|
display:block;
|
|
|
|
|
float: left;
|
|
|
|
|
width: 33%;
|
|
|
|
|
text-align: center;
|
|
|
|
|
b {
|
|
|
|
|
display: block;
|
|
|
|
|
font-size: 2.5rem;
|
|
|
|
|
line-height: 1;
|
|
|
|
|
font-weight: 300;
|
|
|
|
|
}
|
|
|
|
|
i {
|
|
|
|
|
display: block;
|
|
|
|
|
font-style: normal;
|
|
|
|
|
color: rgba($white, 0.75);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.tertiary-accent {
|
|
|
|
|
@include linear-gradient($tertiary-accent-bg, lighten($tertiary-accent-bg,20%));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.secondary-accent {
|
|
|
|
|
@include linear-gradient($secondary-accent-bg, lighten($secondary-accent-bg,20%));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#footer {
|
|
|
|
|
text-align: center;
|
|
|
|
|
padding: 3rem 0 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ct-chart {
|
|
|
|
|
.ct-series {
|
|
|
|
|
.ct-bar {
|
|
|
|
|
stroke-width: 15px;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
&.ct-series-a {
|
|
|
|
|
.ct-bar {
|
|
|
|
|
stroke: rgba($white, 0.85) !important;
|
|
|
|
|
}
|
|
|
|
|
.ct-slice.ct-donut {
|
|
|
|
|
stroke: $white !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
&.ct-series-b {
|
|
|
|
|
.ct-slice.ct-donut {
|
|
|
|
|
stroke: rgba($white, 0.2) !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2014-09-04 18:51:32 -06:00
|
|
|
}
|
|
|
|
|
}
|
2014-09-08 18:32:13 -06:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|