diff options
| author | madelinegr <monika_hedman@brown.edu> | 2019-06-13 18:41:18 -0400 |
|---|---|---|
| committer | madelinegr <monika_hedman@brown.edu> | 2019-06-13 18:41:18 -0400 |
| commit | 639dee759e23083d269ab2a66f30e669b46a9aaf (patch) | |
| tree | a2b89f24e3eafed96811592586fd0b124cd1e180 /src/client/views/search/CheckBox.scss | |
| parent | 16c54cf744476aac5ab0058a070206177f986982 (diff) | |
honestly no idea what is going on
Diffstat (limited to 'src/client/views/search/CheckBox.scss')
| -rw-r--r-- | src/client/views/search/CheckBox.scss | 34 |
1 files changed, 34 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..8eee9176b --- /dev/null +++ b/src/client/views/search/CheckBox.scss @@ -0,0 +1,34 @@ +@import "../globalCssVariables"; + +.checkbox { + display: flex; + + .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; + } + + .box:hover { + background-color: $intermediate-color; + } + + .checkmark { + z-index: 1000; + position: relative; + fill-opacity: 0; + stroke-width: 4px; + stroke: white; + } + +} + +.checkbox-title { + text-transform: uppercase; +}
\ No newline at end of file |
