diff options
author | sowgro <tpoke.ferrari@gmail.com> | 2024-10-29 12:57:00 -0400 |
---|---|---|
committer | sowgro <tpoke.ferrari@gmail.com> | 2024-10-29 12:57:00 -0400 |
commit | e35181b6f85299e40bd748564cbb4ecc752f6d17 (patch) | |
tree | 66d5edb7857ff3daf25127f70d0d5a811526b173 /extension/src/index.css | |
parent | 39571b5ec59077a8734ae8c571e39cd0a0c003c9 (diff) | |
download | bookmarks-home-e35181b6f85299e40bd748564cbb4ecc752f6d17.tar.gz bookmarks-home-e35181b6f85299e40bd748564cbb4ecc752f6d17.tar.bz2 bookmarks-home-e35181b6f85299e40bd748564cbb4ecc752f6d17.zip |
settings sidebar
Diffstat (limited to 'extension/src/index.css')
-rw-r--r-- | extension/src/index.css | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/extension/src/index.css b/extension/src/index.css index 9b18c8a..4ff40f2 100644 --- a/extension/src/index.css +++ b/extension/src/index.css @@ -2,10 +2,34 @@ box-sizing: border-box; } +html { + margin: 0; + padding: 0; +} + body { background-color: #242424; color: white; font-family: sans-serif; + margin: 0; + padding: 0; +} + +#settings-menu { + position: fixed; + height: 100%; + width: 300px; + background-color: black; + padding: 10px; + display: flex; + flex-direction: column; + right: 0; + animation: slideIn; +} + +@keyframes slideIn { + from { width: 0; } + to {width: 300px} } /* Folder */ |