diff options
| author | tschicke-brown <tyler_schicke@brown.edu> | 2019-06-26 22:39:33 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-06-26 22:39:33 -0400 |
| commit | 79345d459a10de1a610bbeb62b503f05b42c1482 (patch) | |
| tree | d5fb2629fd57b16bcf1649cb5ce0093065e80bfd /src/client/views/search/CheckBox.scss | |
| parent | 68a71ec1af52e1e23374c2062c9f809e5fc905d6 (diff) | |
| parent | 212c8be0d974a76246193303408d647896ec232c (diff) | |
Merge pull request #169 from browngraphicslab/searchUI
Basic searching
Diffstat (limited to 'src/client/views/search/CheckBox.scss')
| -rw-r--r-- | src/client/views/search/CheckBox.scss | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/src/client/views/search/CheckBox.scss b/src/client/views/search/CheckBox.scss new file mode 100644 index 000000000..af59d5fbf --- /dev/null +++ b/src/client/views/search/CheckBox.scss @@ -0,0 +1,59 @@ +@import "../globalCssVariables"; + +.checkboxfilter { + display: flex; + margin-top: 0px; + padding: 3px; + + .outer { + display: flex; + position: relative; + justify-content: center; + align-items: center; + margin-top: 0px; + + .check-container:hover~.check-box { + background-color: $intermediate-color; + } + + .check-container { + width: 40px; + height: 40px; + position: absolute; + z-index: 1000; + + .checkmark { + z-index: 1000; + position: absolute; + fill-opacity: 0; + stroke-width: 4px; + stroke: white; + } + } + + .check-box { + z-index: 900; + position: relative; + height: 20px; + width: 20px; + overflow: visible; + background-color: transparent; + border-style: solid; + border-color: $alt-accent; + border-width: 2px; + -webkit-transition: all 0.2s ease-in-out; + -moz-transition: all 0.2s ease-in-out; + -o-transition: all 0.2s ease-in-out; + transition: all 0.2s ease-in-out; + } + } + + .checkbox-title { + display: flex; + align-items: center; + text-transform: capitalize; + margin-left: 15px; + } + +} + |
