2017-11-21 14:47:49 +00:00
|
|
|
.view-space {
|
|
|
|
> .heading {
|
|
|
|
height: 10px;
|
|
|
|
|
|
|
|
> .view-heading {
|
|
|
|
font-size: 1.5rem;
|
|
|
|
font-weight: bold;
|
|
|
|
color: $color-dark;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .filter-caption {
|
|
|
|
color: $color-gray;
|
|
|
|
font-size: 1.0rem;
|
|
|
|
margin: 0 0 10px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .documents {
|
|
|
|
margin: 60px 0;
|
|
|
|
padding: 0;
|
|
|
|
|
|
|
|
> .document {
|
|
|
|
@include card();
|
|
|
|
@include ease-in();
|
|
|
|
list-style-type: none;
|
|
|
|
overflow: hidden;
|
|
|
|
position: relative;
|
|
|
|
margin: 0 0 30px 0;
|
|
|
|
width: 100%;
|
|
|
|
// height: 150px;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
> .checkbox {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> a {
|
|
|
|
@include ease-in();
|
|
|
|
display: block;
|
|
|
|
position: relative;
|
|
|
|
padding: 15px 20px;
|
|
|
|
|
|
|
|
> .title {
|
|
|
|
color: $color-black;
|
|
|
|
font-size: 1.3rem;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .snippet {
|
|
|
|
color: $color-gray;
|
|
|
|
font-size: 1rem;
|
|
|
|
line-height: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: $color-gray;
|
|
|
|
|
|
|
|
> .title {
|
|
|
|
color: $color-link;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .snippet {
|
|
|
|
color: $color-link;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .checkbox {
|
|
|
|
position: absolute;
|
|
|
|
display: none;
|
|
|
|
top: 10px;
|
|
|
|
right: 20px;
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
> .material-icons {
|
|
|
|
width: 10px;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
color: $color-checkbox;
|
|
|
|
}
|
|
|
|
}
|
2017-11-22 13:39:46 +00:00
|
|
|
|
|
|
|
> .actions {
|
|
|
|
position: absolute;
|
|
|
|
display: none;
|
|
|
|
bottom: 2px;
|
|
|
|
right: 12px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2017-11-21 14:47:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
> .selected {
|
|
|
|
background-color: $color-primary-light !important;
|
|
|
|
|
|
|
|
> .checkbox {
|
|
|
|
display: block;
|
|
|
|
}
|
2017-11-22 13:39:46 +00:00
|
|
|
|
|
|
|
> .actions {
|
|
|
|
display: block;
|
|
|
|
}
|
2017-11-21 14:47:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.hashtags {
|
|
|
|
> .hashtag {
|
|
|
|
display: inline-block;
|
|
|
|
margin: 5px 10px 0 5px;
|
|
|
|
color: $color-gray;
|
|
|
|
font-size: 0.875rem;
|
|
|
|
font-style: italic;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: $color-link;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|