Skip to content

Commit

Permalink
Finished compare-stores.html
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathannnty committed Sep 18, 2024
1 parent 0db8e4f commit 7f7e94d
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 12 deletions.
24 changes: 14 additions & 10 deletions source/css/compare-stores.css
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@
font-size: 1.5em;
font-weight: bold;
cursor: pointer;
white-space: nowrap;
}

.store {
Expand All @@ -106,7 +107,6 @@
.storeTitleBar img {
width: 50px;
height: 50px;
/* margin-bottom: 10px; */
border-radius: 50%;
}

Expand Down Expand Up @@ -146,13 +146,15 @@ select {

.store-dropdown {
background-color: white;
margin-top: 2em;
margin: 2.5em 0 0 0;
border: 1px solid #000000;
border-radius: 0.25em;
/* padding: 0.6em 1em 0 0.3em; */
padding: 0 0 0 0.25em;
font-size: 1em;
cursor: pointer;
display: grid;
display: flex;
flex-direction: row;
width: 6rem;
/* grid-template-areas: "select"; */
/* align-items: center; */
}
Expand All @@ -166,9 +168,10 @@ store-dropdown,
content: "";
width: 0.8em;
height: 0.5em;
padding: 0;
margin: 0.5em 0.25em;
background-color: #777;
clip-path: polygon(100% 0%, 0 0%, 50% 100%);
grid-area: ; 2
}

.store-select {
Expand Down Expand Up @@ -197,16 +200,17 @@ store-dropdown,
}

.delete-store-btn:hover {
background-color: darkred;
background-color: rgba(139, 0, 0, 0.5);

}

.storeItems {
margin: 0em;
padding: 0 1em 5em 1em;
background-color: #ffffff;
border-radius: 10px;
max-height: 315px;
min-height: 315px;
max-height: 52.5vh;
min-height: 52.5vh;
overflow-y: scroll;
}

Expand Down Expand Up @@ -236,13 +240,13 @@ store-dropdown,
justify-content: space-between;
padding: 10px;
margin-top: 10px;
background-color: #272d32;
background-color: rgba(56, 64, 71, 0.85);
border-radius: 10px;
font-weight: bold;
font-size: 16px;
}

.subtotal-price,
.total-price {
color: #ffffff;
color: #fbf7f5;
}
3 changes: 1 addition & 2 deletions source/css/make-list.css
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,7 @@
}

.menuBTN:hover {
background-color: #719150;
opacity: 70%;
background-color: rgba(113, 145, 80, 0.75);
}

.menuBTN:focus:not(:focus-visible):not(.focus-visible) {
Expand Down

0 comments on commit 7f7e94d

Please sign in to comment.