diff options
author | Owen <och4609@g.rit.edu> | 2024-10-29 15:58:58 -0400 |
---|---|---|
committer | Owen <och4609@g.rit.edu> | 2024-10-29 15:58:58 -0400 |
commit | 74ff815379ea51d2200d63c90cb898458ab18945 (patch) | |
tree | 1255dac3f92f39e45e79f5ab63368b57c7f0c6d6 /extension/src/index.css | |
parent | 1db4160d438e53f418ef21248beeb1f8642ee514 (diff) | |
parent | d270842f3ff338c530519eef26229d8a2d35cab8 (diff) | |
download | bookmarks-home-74ff815379ea51d2200d63c90cb898458ab18945.tar.gz bookmarks-home-74ff815379ea51d2200d63c90cb898458ab18945.tar.bz2 bookmarks-home-74ff815379ea51d2200d63c90cb898458ab18945.zip |
Merge branch 'main' of https://github.com/ATO-b2/bookmarks-home
Diffstat (limited to 'extension/src/index.css')
-rw-r--r-- | extension/src/index.css | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/extension/src/index.css b/extension/src/index.css index 9b18c8a..20d7bf2 100644 --- a/extension/src/index.css +++ b/extension/src/index.css @@ -2,10 +2,35 @@ 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 0.3s ease-in-out; + +} + +@keyframes slideIn { + from { transform: translateX(100%); } + to { transform: translateX( 0% ); } } /* Folder */ |