1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-08-05 05:25:27 +02:00
documize/app/app/styles/view/page-search.scss

76 lines
1.4 KiB
SCSS
Raw Normal View History

2016-07-07 18:54:16 -07:00
.page-search {
.input-control {
2016-11-04 15:33:56 -07:00
> input {
background-color: $color-header;
}
2016-07-07 18:54:16 -07:00
}
.search-results {
.heading {
font-size: 1.2rem;
2016-11-04 15:33:56 -07:00
color: $color-off-black;
2016-07-07 18:54:16 -07:00
}
> .list {
margin-top: 20px;
list-style: none;
> .item {
cursor: pointer;
margin: 0 30px 30px 0;
padding-bottom: 40px;
border-bottom: 1px solid #e1e1e1;
> .link {
text-decoration: none;
color: $color-off-black;
&:hover {
color: $color-link;
}
> .title {
display: inline-block;
font-size: 1.2rem;
}
> .folder {
display: inline-block;
font-size: 0.8rem;
color: $color-gray;
margin-left: 15px;
}
> .excerpt {
margin-top: 1rem;
font-size: 0.9rem;
}
> .chips {
margin-top: 1rem;
}
}
> .references {
margin-top: 1rem;
> .label {
font-size: 0.9rem;
color: $color-gray;
}
> .link {
font-size: 0.9rem;
color: $color-off-black;
&:hover {
color: $color-link;
text-decoration: underline;
}
}
}
}
}
}
}