diff options
author | ManeraKai <manerakai@protonmail.com> | 2022-01-31 21:01:16 +0300 |
---|---|---|
committer | ManeraKai <manerakai@protonmail.com> | 2022-01-31 21:01:24 +0300 |
commit | 540b41ef0a752bf7aa0d90df37bdb69a28b6f39f (patch) | |
tree | 741443b9b61f81b0c8690c3c71aed75bc770c781 /src/pages/stylesheets/styles.css | |
parent | Updating RandomPools (diff) | |
download | libredirect-540b41ef0a752bf7aa0d90df37bdb69a28b6f39f.zip |
Refining code. Adding frontend option to search
Diffstat (limited to 'src/pages/stylesheets/styles.css')
-rw-r--r-- | src/pages/stylesheets/styles.css | 37 |
1 files changed, 33 insertions, 4 deletions
diff --git a/src/pages/stylesheets/styles.css b/src/pages/stylesheets/styles.css index 22c4b17b..5ee137c5 100644 --- a/src/pages/stylesheets/styles.css +++ b/src/pages/stylesheets/styles.css @@ -226,8 +226,39 @@ li { color: var(--text); } -.option { - width: 100%; +section.option-block { + width: 50%; + margin: 0 50px; +} + +body.option { + display: flex; + align-items: flex-start; + padding: 40px; +} + + +section.links { + margin: 00px 0; +} + +section.links a { + display: flex; + align-items: center; + font-size: 30px; + text-decoration: none; + color: white; + margin: 20px 0; + font-weight: bold; + transition: 0.1s; +} + +section.links a:hover { + color: var(--active); +} + +section.links a.selected { + color: var(--active); } .option td { @@ -270,8 +301,6 @@ input[type="url"]:focus { /* \25BE */ - - hr { height: 2px; margin: 0 15px; |