-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
14 changed files
with
62 additions
and
79 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
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
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
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,12 +1,16 @@ | ||
delete from books; | ||
delete from users; | ||
|
||
insert into users values(1, "", "", "[email protected]", "admin"); | ||
insert into users values(1, "admin", "", "[email protected]", "admin"); | ||
insert into users values(2, "Jane", "Koy", "[email protected]", "firstUser1!"); | ||
|
||
INSERT INTO `books` (`id`, `imgID`, `title`, `authors`, `isbn`, `subjectCode`, `condition`, `desc`, `price`, `sellerEmail`) VALUES | ||
(1, 'csci-2844507230.jpg', 'Algorithms', 'Sanjoy Dasgupta, Christos Papadimitriou, Umesh Vazirani', '978-0073523408', 'csci', 'good', 'includes handwritings+highlightings', '15.00', '[email protected]'), | ||
(2, 'biol-8129677909.jpg', 'Essential Cell Biology', 'Bruce Alberts, Karen Hopkin, Alexander Johnson, David Morgan, Martin Raff, Keith Roberts, Peter Walter', '978-0393680379', 'biol', 'fair', 'includes handwritings+highlightings', '20.00', '[email protected]'), | ||
(3, 'csci-5109354294.jpg', 'Practical Programming', 'Paul Gries, Jennifer Campbell, Jason Montojo', '9781680502688', 'csci', 'new', 'csci1100, lightly used', '30.00', '[email protected]'); | ||
(4, 'mgmt-5123364294.jpg', 'Principiles of Management', 'David S Bright, Anastasia H Cortes, Eva Hartmann', '9384781502789', 'mgmt1100', 'new', 'lightly used', '30.00', '[email protected]'), | ||
(5, 'econ-5345574294.jpg', 'Principles of Microeconomics', 'N. Gregory Mankiw', '9384781502789', '9384781502789', 'econ', 'fair', 'used', '30.00', '[email protected]'), | ||
(6, 'calc-5234973584.jpg', 'Calculus Third Edition', 'William L Briggs, William Briggs, Lyle Cochran, Bernard Gillett, Eric L Schulz, Eric Schulz', '9234690702489', 'math', 'fair', 'used', '30.00', '[email protected]'); | ||
(3, 'csci-5109354294.jpg', 'Practical Programming', 'Paul Gries, Jennifer Campbell, Jason Montojo', '9781680502688', 'csci', 'new', 'csci1100, lightly used', '30.00', '[email protected]'), | ||
(4, 'mgmt-5123364294.jpg', 'Principiles of Management', 'David S Bright, Anastasia H Cortes, Eva Hartmann', '9384781502789', 'mgmt1100', 'new', 'shrink wrap included', '45.00', '[email protected]'), | ||
(5, 'econ-5345574294.jpg', 'Principles of Microeconomics', 'N. Gregory Mankiw', '9384781502789', 'econ', 'fair', 'some water damage but all pages inact', '30.00', '[email protected]'), | ||
(6, 'math-5234973584.jpg', 'Calculus Third Edition', 'William L Briggs, William Briggs, Lyle Cochran, Bernard Gillett, Eric L Schulz, Eric Schulz', '9234690702489', 'math', 'fair', 'used', '55.99', '[email protected]'), | ||
(7, 'astr-6038484371.jpg', 'Foundations of Astrophysics', 'Barbara S. Ryden, Bradley M. Peterson', '978-0321595584', 'astr', 'poor', '"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit i', '15.75', '[email protected]'), | ||
(8, 'econ-1658630216.jpg', 'Intermediate Microeconomics: A Modern Approach', 'Hal R. Varian', '978-0393934243', 'econ', 'poor', '"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit i', '21.00', '[email protected]'), | ||
(9, 'math-2371036874.jpg', 'Introduction to Linear Algebra', 'Gilbert Strang', '978-1733146654', 'math', 'very good', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis', '87.34', '[email protected]'); |
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
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,24 +1,21 @@ | ||
#outer { | ||
margin: auto; | ||
margin-top: 20px; | ||
width: 50%; | ||
padding: 10px; | ||
background-color: whitesmoke; | ||
border: 10px solid blueviolet; | ||
background-color: #f4f7f8; | ||
border: 10px solid #a8d5f8; | ||
padding: 20px; | ||
height: 100px; | ||
|
||
} | ||
|
||
#middle{ | ||
font-size: 2em; | ||
font-variant: small-caps; | ||
font-weight: bold; | ||
bottom: 200px; | ||
left: 650px; | ||
float: left; | ||
margin-right: 250px; | ||
} | ||
|
||
#sellerlog{ | ||
font-size: 2em; | ||
margin-left: 600px; | ||
margin-top: -75px; | ||
} | ||
} |
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,27 +1,20 @@ | ||
#item{ | ||
position:relative; | ||
|
||
|
||
|
||
|
||
position:relative; | ||
width: 80%; | ||
margin: auto; | ||
} | ||
|
||
img { | ||
width:250px; | ||
width:350px; | ||
position:absolute; | ||
top:10px; | ||
left:10px; | ||
|
||
|
||
top:10px; | ||
left:10px; | ||
} | ||
|
||
#bookInfo{ | ||
position:absolute; | ||
background-color: green; | ||
top:10px; | ||
left:310px; | ||
|
||
|
||
|
||
|
||
background-color: #a8d5f8; | ||
top:50px; | ||
left:400px; | ||
padding: 10px; | ||
} |
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
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 |
---|---|---|
|
@@ -20,4 +20,4 @@ img{ | |
|
||
#welcomeDesc { | ||
margin-left: 52%; | ||
} | ||
} |
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 |
---|---|---|
|
@@ -2,6 +2,7 @@ h2 { | |
padding-bottom: 1vw; | ||
font-variant: small-caps; | ||
font-size: 3.5vw; | ||
color: #449fee; | ||
} | ||
|
||
.body { | ||
|