generated from acmucsd-projects/mern-template-updated
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dd3b1c2
commit 4e33339
Showing
2 changed files
with
147 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,87 +1,110 @@ | ||
#display { | ||
background-color: #F3F3F3; | ||
border-radius: 10px; | ||
padding: 1em; | ||
margin: 1em 2em; | ||
display: flex; | ||
flex-direction: row; | ||
justify-content: flex-start; | ||
align-items: auto; | ||
height: 100vh; | ||
overflow-y: auto; | ||
.display { | ||
background-color: #f3e9ce; | ||
display: flex; | ||
flex-direction: row; | ||
justify-content: flex-start; | ||
align-items: flex-start; | ||
overflow-y: auto; | ||
border-radius: 1em; | ||
padding: 1.5em 1.25em; | ||
margin: 1em 2em; | ||
height: auto; | ||
} | ||
|
||
#display h1 { | ||
align-self: start; | ||
padding-bottom: 0; | ||
margin-bottom: 0; | ||
padding-left: 0.5em; | ||
white-space: nowrap; | ||
button, | ||
#pencil { | ||
background-color: aqua; | ||
/* background-image: url("./assets/images/pencil-icon.png"); */ | ||
background: none; | ||
border: none; | ||
height: 25px; | ||
width: 21px; | ||
padding: 0em; | ||
align-self: center; | ||
} | ||
|
||
#display h2 { | ||
align-self: start; | ||
padding: 0em 0.5em; | ||
margin: 0.5em; | ||
font-weight: 400; | ||
font-size: 1em; | ||
#title-icon { | ||
display: flex; | ||
align-items: flex-end; | ||
height: 35px; | ||
width: auto; | ||
} | ||
|
||
#listandimage { | ||
display: flex; | ||
flex-direction: column; | ||
#user-details { | ||
display: flex; | ||
flex-direction: column; | ||
align-items: flex-start; | ||
} | ||
|
||
#listandimg { | ||
display: flex; | ||
flex-direction: row; | ||
justify-content: space-between; | ||
align-self: center; | ||
width: 90vw; | ||
height: 95vh; | ||
#user-details h1, | ||
h2 { | ||
white-space: nowrap; | ||
align-self: start; | ||
margin: 0; | ||
padding: 0.2em 0.5em 0em; | ||
} | ||
|
||
#list ul { | ||
padding: 1em; | ||
margin: 0; | ||
text-align: left; | ||
list-style-type: none; | ||
font-size: large; | ||
white-space: nowrap; | ||
#user-details h2 { | ||
padding: 0em 0.5em; | ||
margin: 0.5em; | ||
font-weight: 400; | ||
font-size: 1em; | ||
} | ||
|
||
#list #items { | ||
line-height: 2.5em; | ||
font-weight: 600; | ||
#user-details ul { | ||
text-align: left; | ||
list-style-type: none; | ||
font-size: 1.5em; | ||
white-space: nowrap; | ||
padding: 1em; | ||
margin: 0; | ||
line-height: 2.5em; | ||
font-weight: 600; | ||
height: 100%; | ||
} | ||
|
||
#list #prices { | ||
flex-grow: 0.5; | ||
text-align: right; | ||
line-height: 2.5em; | ||
font-weight: 400; | ||
padding-left: 8em; | ||
.layout { | ||
display: flex; | ||
flex-direction: row; | ||
justify-content: space-between; | ||
align-self: center; | ||
width: 90vw; | ||
height: auto; | ||
} | ||
|
||
#listandimg div { | ||
display: flex; | ||
flex-wrap: wrap; | ||
flex-direction: row; | ||
overflow: hidden; | ||
justify-content: center; | ||
align-items: center; | ||
gap: 10px; | ||
#user-details .price { | ||
flex-shrink: 1; | ||
text-align: right; | ||
line-height: 2.5em; | ||
font-weight: 400; | ||
padding-left: 5em; | ||
} | ||
|
||
#listandimg #store { | ||
max-width: 100%; | ||
max-height: 100%; | ||
object-fit: contain; | ||
display: block; | ||
.img { | ||
flex: 1 1 5em; | ||
max-width: 100%; | ||
height: auto; | ||
max-height: 13em; | ||
object-fit: contain; | ||
display: block; | ||
margin: 0.5em 0em; | ||
} | ||
|
||
#list { | ||
display: flex; | ||
flex-direction: row; | ||
.right-col { | ||
display: flex; | ||
flex-direction: row; | ||
flex-wrap: wrap; | ||
align-items: normal; | ||
align-content: normal; | ||
justify-content: normal; | ||
/* margin-bottom: 10em; */ | ||
max-width: 50vw; | ||
max-height: 27.5em; | ||
overflow: scroll; | ||
} | ||
|
||
#subtotal-total { | ||
display: flex; | ||
flex-direction: row; | ||
justify-items: flex-start; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters