diff options
| author | Alexandre Flament <alex@al-f.net> | 2021-03-10 15:03:18 +0100 |
|---|---|---|
| committer | Alexandre Flament <alex@al-f.net> | 2021-03-10 19:28:51 +0100 |
| commit | c7133efb12641c55395e5b249cbc3cf44d8c8dff (patch) | |
| tree | 081789575e0d287107f68087da209133286fa725 /searx/static/themes/oscar/src/less/pointhi/search.less | |
| parent | eda3b513acd2106da44e8cddae3d54a90e241958 (diff) | |
[mod] oscar: move compiled files to the src directory
Diffstat (limited to 'searx/static/themes/oscar/src/less/pointhi/search.less')
| -rw-r--r-- | searx/static/themes/oscar/src/less/pointhi/search.less | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/searx/static/themes/oscar/src/less/pointhi/search.less b/searx/static/themes/oscar/src/less/pointhi/search.less new file mode 100644 index 000000000..ac0a7a0c7 --- /dev/null +++ b/searx/static/themes/oscar/src/less/pointhi/search.less @@ -0,0 +1,43 @@ +.search_categories, #categories { + text-transform: capitalize; + margin-bottom: 1.5rem; + margin-top: 1.5rem; + display: flex; + flex-wrap: wrap; + align-content: stretch; + + label, .input-group-addon { + flex-grow: 1; + flex-basis: auto; + font-size: 1.3rem; + font-weight: normal; + background-color: white; + border: #DDD 1px solid; + border-right: none; + color: #333; + padding-bottom: 0.8rem; + padding-top: 0.8rem; + text-align: center; + min-width: 50px; + } + + label:last-child, .input-group-addon:last-child { + border-right: #DDD 1px solid; + } + + input[type="checkbox"]:checked + label{ + color: black; + font-weight: bold; + background-color: #EEE; + } +} + +.visually-hidden { + position: absolute !important; + height: 1px; + width: 1px; + overflow: hidden; + clip: rect(1px 1px 1px 1px); /* IE6, IE7 */ + clip: rect(1px, 1px, 1px, 1px); + white-space: nowrap; /* added line */ +} |