1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-24 23:59:47 +02:00
documize/gui/app/styles/view/page-search.scss

60 lines
826 B
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 {
2016-11-09 15:16:44 -08:00
background-color: $color-sidebar;
2016-11-04 15:33:56 -07:00
}
2016-07-07 18:54:16 -07:00
}
2017-08-15 14:15:31 +01:00
.examples {
color: $color-gray;
}
2016-07-07 18:54:16 -07:00
.search-results {
2017-03-23 18:28:42 +00:00
> .heading {
font-size: 2rem;
margin-bottom: 10px;
font-weight: normal;
2016-11-09 15:16:44 -08:00
}
2016-07-07 18:54:16 -07:00
2016-11-09 15:16:44 -08:00
> .list {
margin-top: 20px;
2016-07-07 18:54:16 -07:00
list-style: none;
2016-11-09 15:16:44 -08:00
> .item {
2017-03-23 18:28:42 +00:00
@include content-container();
2016-11-09 15:16:44 -08:00
cursor: pointer;
2017-03-23 18:28:42 +00:00
margin-bottom: 30px;
2016-07-07 18:54:16 -07:00
2016-11-09 15:16:44 -08:00
> .link {
text-decoration: none;
color: $color-off-black;
2016-07-07 18:54:16 -07:00
&:hover {
color: $color-link;
}
2016-11-09 15:16:44 -08:00
> .title {
display: inline-block;
2016-07-07 18:54:16 -07:00
font-size: 1.2rem;
2016-11-09 15:16:44 -08:00
}
2016-07-07 18:54:16 -07:00
> .folder {
2016-11-09 15:16:44 -08:00
font-size: 0.8rem;
color: $color-gray;
2017-03-23 18:28:42 +00:00
margin-top: 5px;
2016-11-09 15:16:44 -08:00
}
2016-07-07 18:54:16 -07:00
2016-11-09 15:16:44 -08:00
> .excerpt {
2016-07-07 18:54:16 -07:00
margin-top: 1rem;
2016-11-09 15:16:44 -08:00
font-size: 0.9rem;
}
2016-07-07 18:54:16 -07:00
> .chips {
margin-top: 1rem;
}
2016-11-09 15:16:44 -08:00
}
}
}
}
2016-07-07 18:54:16 -07:00
}