diff options
author | Owen <och4609@g.rit.edu> | 2024-10-17 13:10:11 -0400 |
---|---|---|
committer | Owen <och4609@g.rit.edu> | 2024-10-17 13:10:11 -0400 |
commit | 2d4747a14d68b4473c5a2fc4ceac560c38a30f65 (patch) | |
tree | fbcbba06c0fb8639c63c64793766e63134b66803 /extension/src/index.css | |
parent | 1634be0d7553b806e8c63fe827295a1c9d0f5950 (diff) | |
download | bookmarks-home-2d4747a14d68b4473c5a2fc4ceac560c38a30f65.tar.gz bookmarks-home-2d4747a14d68b4473c5a2fc4ceac560c38a30f65.tar.bz2 bookmarks-home-2d4747a14d68b4473c5a2fc4ceac560c38a30f65.zip |
Added style sheet
Diffstat (limited to 'extension/src/index.css')
-rw-r--r-- | extension/src/index.css | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/extension/src/index.css b/extension/src/index.css index 63a2a92..186dad3 100644 --- a/extension/src/index.css +++ b/extension/src/index.css @@ -1,3 +1,8 @@ +body { + background-color: hsl(180, 100%, 50%); + +} + .folder { display: flex; flex-direction: column; @@ -8,7 +13,24 @@ margin: 2px; } + .folder > div { display: flex; + flex-direction: row; + gap: 10px; +} + +.bookmark > img{ + padding: 10px; + +} + +.bookmark { + display: flex; flex-direction: column; -}
\ No newline at end of file + width: 100px; + + +} + + |