diff options
| author | madelinegr <laura_wilson@brown.edu> | 2019-06-04 18:15:54 -0400 |
|---|---|---|
| committer | madelinegr <laura_wilson@brown.edu> | 2019-06-04 18:15:54 -0400 |
| commit | 4fd53320c87313c9add8f551154f8df3e2522b5f (patch) | |
| tree | 2ee56d028c68acb31ac683e79604ae70d0f94b15 /src/client/views/SearchBox.scss | |
| parent | 2ef339e37182554a370afd0086322e79b80ac4f2 (diff) | |
end of day 6/4
Diffstat (limited to 'src/client/views/SearchBox.scss')
| -rw-r--r-- | src/client/views/SearchBox.scss | 70 |
1 files changed, 66 insertions, 4 deletions
diff --git a/src/client/views/SearchBox.scss b/src/client/views/SearchBox.scss index b38e6091d..22b198739 100644 --- a/src/client/views/SearchBox.scss +++ b/src/client/views/SearchBox.scss @@ -48,7 +48,6 @@ .filter-form { background: $dark-color; height: 400px; - width: 400px; position: relative; right: 1px; color: $light-color; @@ -71,15 +70,14 @@ top: 300px; display: flex; flex-direction: column; + margin-right: 72px; .search-item { + pointer-events: auto; width: 500px; - height: 50px; background: $light-color-secondary; - display: flex; justify-content: space-between; align-items: center; - transition: all 0.1s; border-width: 0.11px; border-style: none; border-color: $intermediate-color; @@ -89,6 +87,18 @@ font-size: 13px; } + .search-info { + display: flex; + justify-content: flex-end; + width: 100%; + } + + .main-search-info { + display: flex; + flex-direction: row; + width: 100%; + } + .search-item:hover { transition: all 0.1s; background: $lighter-alt-accent; @@ -98,5 +108,57 @@ text-transform: uppercase; text-align: left; width: 8vw; + font-weight: bold; + } + + .more-search-info { + text-align: left; + } + + .link-count { + height: 25px; + width: 25px; + border-radius: 50%; + background: $dark-color; + color: $light-color-secondary; + display: flex; + justify-content: center; + align-items: center; + margin-right: 10px; + } + + .search-type { + width: 25PX; + height: 25PX; + display: flex; + justify-content: center; + align-items: center; + } + + + .searchBox-instances { + display: inline-block; + background: $dark-color; + width: 100px; + opacity: 1; + // width: 0px; this is real + // visibility: hidden; + // opacity: 0; THIS IS REAL + // transition: all 0.2s ease; + color: $light-color; + } + + .search-overview { + display: flex; + // float: left; + justify-content: flex-end; + } + + .search-overview:hover { + .searchBox-instances { + // visibility: visible; + opacity: 1; + width: 100px; + } } }
\ No newline at end of file |
