aboutsummaryrefslogtreecommitdiff
path: root/extension
diff options
context:
space:
mode:
authorOwen <och4609@g.rit.edu>2024-10-17 13:21:19 -0400
committerOwen <och4609@g.rit.edu>2024-10-17 13:21:19 -0400
commit1a37751760ff18f65b5162472330ea344623d17c (patch)
tree0359252fcf8d92de76d1cc16b1c18278c0b08778 /extension
parent2d4747a14d68b4473c5a2fc4ceac560c38a30f65 (diff)
downloadbookmarks-home-1a37751760ff18f65b5162472330ea344623d17c.tar.gz
bookmarks-home-1a37751760ff18f65b5162472330ea344623d17c.tar.bz2
bookmarks-home-1a37751760ff18f65b5162472330ea344623d17c.zip
updating style sheet
Diffstat (limited to 'extension')
-rw-r--r--extension/src/index.css15
1 files changed, 12 insertions, 3 deletions
diff --git a/extension/src/index.css b/extension/src/index.css
index 186dad3..2c823b5 100644
--- a/extension/src/index.css
+++ b/extension/src/index.css
@@ -1,6 +1,6 @@
body {
- background-color: hsl(180, 100%, 50%);
-
+ background-color: #1e1e1e;
+ color: white;
}
.folder {
@@ -11,13 +11,14 @@ body {
border-color: black;
padding: 2px;
margin: 2px;
+ padding: 10px;
}
.folder > div {
display: flex;
flex-direction: row;
- gap: 10px;
+
}
.bookmark > img{
@@ -29,8 +30,16 @@ body {
display: flex;
flex-direction: column;
width: 100px;
+ padding: 20px;
+}
+.bookmark:hover {
+ background-color: rgba(0, 0, 0, 0.5);
+}
+a {
+ color: white;
+ text-decoration: none;
}