diff options
| author | Serghei Iakovlev <egrep@protonmail.ch> | 2022-07-05 01:39:56 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-07-05 01:39:56 +0200 |
| commit | 03a5d662e498ac295e6aab2c0322d624f76ffa2e (patch) | |
| tree | 5f92cccab02c899071424bc02b7dde08f75cf602 /resources/_gen/assets/scss/sass/style.scss_f300667da4f5b5f84e1a9e0702b2fdde.content | |
| parent | f1cb48a7e000be9332d22aa5f0f40bb36015839c (diff) | |
| parent | 143f31a09673045925622d062c993315c62cff41 (diff) | |
| download | gohugo-theme-ed-03a5d662e498ac295e6aab2c0322d624f76ffa2e.tar.gz | |
Merge pull request #6 from sergeyklay/feature/search
Implementing search
Diffstat (limited to 'resources/_gen/assets/scss/sass/style.scss_f300667da4f5b5f84e1a9e0702b2fdde.content')
| -rw-r--r-- | resources/_gen/assets/scss/sass/style.scss_f300667da4f5b5f84e1a9e0702b2fdde.content | 38 |
1 files changed, 35 insertions, 3 deletions
diff --git a/resources/_gen/assets/scss/sass/style.scss_f300667da4f5b5f84e1a9e0702b2fdde.content b/resources/_gen/assets/scss/sass/style.scss_f300667da4f5b5f84e1a9e0702b2fdde.content index bafac99..0cfdcef 100644 --- a/resources/_gen/assets/scss/sass/style.scss_f300667da4f5b5f84e1a9e0702b2fdde.content +++ b/resources/_gen/assets/scss/sass/style.scss_f300667da4f5b5f84e1a9e0702b2fdde.content @@ -857,6 +857,41 @@ form input:-moz-ui-invalid { .button svg:last-child { margin-right: 0; margin-left: 8px; } } +.hide-element { + display: none; } + +.search-container { + width: 100%; + display: flex; + flex-flow: row nowrap; + align-items: center; + justify-content: space-evenly; + line-height: 1.3; } + +#site-search a { + color: #d9d9d9; + text-decoration: none; } + +#search-form .search-error.hide-element { + display: none; } + +.search-item { + font-weight: bold; } + +.search-error { + -webkit-transition: all 0.5s ease-out; + -moz-transition: all 0.5s ease-out; + -ms-transition: all 0.5s ease-out; + -o-transition: all 0.5s ease-out; + transition: all 0.5s ease-out; } + +.search-error-message { + -webkit-transition: all 0.5s ease-out; + -moz-transition: all 0.5s ease-out; + -ms-transition: all 0.5s ease-out; + -o-transition: all 0.5s ease-out; + transition: all 0.5s ease-out; } + .masthead-title small { font-size: .78rem; } @@ -910,9 +945,6 @@ form input:-moz-ui-invalid { .post:first-of-type { margin-top: 0; } -#main article { - min-height: 100px; } - #TableOfContents ul ul, #TableOfContents ul ul ul, #TableOfContents ul ul ul ul, |
