summaryrefslogtreecommitdiffstats
path: root/sass/_search.scss
diff options
context:
space:
mode:
Diffstat (limited to 'sass/_search.scss')
-rw-r--r--sass/_search.scss61
1 files changed, 61 insertions, 0 deletions
diff --git a/sass/_search.scss b/sass/_search.scss
new file mode 100644
index 0000000..4012e96
--- /dev/null
+++ b/sass/_search.scss
@@ -0,0 +1,61 @@
+.search-container {
+ display: none;
+
+ &--is-visible {
+ display: block;
+ width: 100%;
+ }
+
+ #search {
+ width: 100%;
+ display: block;
+ border:none;
+ border-left: 1px solid $color;
+ padding:1px 0;
+ text-align: left;
+ line-height: $baseline;
+ font-size: $font-size;
+ font-family:$font-family;
+ color:$color;
+ background:transparent;
+ }
+
+ #search:focus {
+ outline:none;
+ border:none;
+ }
+
+ .search-results {
+ &__header {
+ font-weight: bold;
+ padding: 1rem 0rem;
+ }
+
+ &__items {
+ margin: 0 2vw;
+ padding: 0;
+ list-style: circle;
+ }
+
+ &__item {
+ margin-bottom: 1rem;
+ }
+
+ &__teaser {
+
+ }
+ }
+}
+
+#on_right {
+ display: block;
+ text-align: right;
+ margin-bottom: $baseline;
+}
+
+#search-ico {
+ font-family: 'FabricMDL2Icons';
+ cursor: pointer;
+ font-size: $baseline;
+ line-height: 1;
+} \ No newline at end of file