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.
92 lines
1.4 KiB
92 lines
1.4 KiB
@import '_vars';
|
|
@import '_mixins';
|
|
|
|
.apps {
|
|
&-title {
|
|
font-weight: light;
|
|
font-size: 1.4rem;
|
|
}
|
|
|
|
&-section {
|
|
@include clearfix;
|
|
padding-top: 2rem;
|
|
padding-right: 1.25rem;
|
|
padding-bottom: 0;
|
|
padding-left: $size-sidebar-width + .25rem;
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
.card {
|
|
& {
|
|
margin-right: 1rem;
|
|
margin-bottom: 1rem;
|
|
width: 16rem;
|
|
float: left;
|
|
}
|
|
|
|
&-lg {
|
|
width: 33rem;
|
|
}
|
|
|
|
&-image {
|
|
text-align: center;
|
|
}
|
|
|
|
&-text {
|
|
color: $color-text-decent;
|
|
font-weight: normal;
|
|
font-size: .9rem;
|
|
}
|
|
|
|
&-more {
|
|
color: $color-text-decent;
|
|
font-weight: normal;
|
|
font-size: .8rem;
|
|
margin-top: .4rem;
|
|
}
|
|
|
|
&-title {
|
|
@include truncate;
|
|
color: $color-title;
|
|
font-weight: light;
|
|
font-size: 1.2rem;
|
|
margin-top: .4rem;
|
|
}
|
|
|
|
&-template {
|
|
.card-body {
|
|
min-height: 15.5rem;
|
|
}
|
|
}
|
|
|
|
&-href {
|
|
& {
|
|
cursor: pointer;
|
|
}
|
|
|
|
&:hover {
|
|
@include box-shadow(0, 3px, 16px, .2);
|
|
}
|
|
|
|
&:focus {
|
|
outline: none;
|
|
}
|
|
|
|
&:hover,
|
|
&:focus,
|
|
&:active {
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
|
|
&:hover {
|
|
.deeplinks {
|
|
display: inline-block;
|
|
}
|
|
}
|
|
|
|
.deeplinks {
|
|
display: none;
|
|
}
|
|
}
|