mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
105 lines
1.5 KiB
105 lines
1.5 KiB
.dashboard {
|
|
& {
|
|
@include absolute(0, 0, 0, 0);
|
|
overflow-y: auto;
|
|
}
|
|
|
|
&-title {
|
|
font-size: 1.4rem;
|
|
}
|
|
|
|
&-inner {
|
|
max-width: 75rem;
|
|
padding: 2rem;
|
|
padding-right: 1rem;
|
|
}
|
|
}
|
|
|
|
.subtext {
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
:host ::ng-deep {
|
|
canvas {
|
|
height: 12rem !important;
|
|
margin-bottom: 0;
|
|
margin-top: -1rem;
|
|
}
|
|
}
|
|
|
|
.card-image {
|
|
img {
|
|
height: 5rem;
|
|
}
|
|
}
|
|
|
|
.card {
|
|
& {
|
|
@include force-height(16rem);
|
|
float: left;
|
|
margin-bottom: 1rem;
|
|
margin-right: 1rem;
|
|
width: 16rem;
|
|
}
|
|
|
|
&-lg {
|
|
width: 33rem;
|
|
}
|
|
|
|
&-image {
|
|
text-align: center;
|
|
}
|
|
|
|
&-history {
|
|
overflow-y: auto;
|
|
}
|
|
|
|
&-text {
|
|
color: $color-text-decent;
|
|
font-size: .9rem;
|
|
font-weight: normal;
|
|
}
|
|
|
|
&-title {
|
|
color: $color-title;
|
|
font-size: 1.2rem;
|
|
font-weight: light;
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
&-href {
|
|
& {
|
|
cursor: pointer;
|
|
}
|
|
|
|
&:hover {
|
|
@include box-shadow-outer(0, 3px, 16px, .2px);
|
|
}
|
|
|
|
&:focus {
|
|
outline: none;
|
|
}
|
|
|
|
&:hover,
|
|
&:focus,
|
|
&:active {
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
.aggregation {
|
|
& {
|
|
text-align: center;
|
|
}
|
|
|
|
&-label {
|
|
color: $color-text-decent;
|
|
}
|
|
|
|
&-value {
|
|
font-size: 3rem;
|
|
margin-bottom: .5rem;
|
|
margin-top: 1rem;
|
|
}
|
|
}
|