├── analysis.pdf
├── framework
├── lead.html
└── wireframes
│ ├── addToCollection.html
│ ├── css
│ ├── materialize.min.css
│ └── styles.css
│ ├── fonts
│ ├── Operator Mono
│ │ ├── OperatorMono-Bold.otf
│ │ ├── OperatorMono-BoldItalic.otf
│ │ ├── OperatorMono-Book.otf
│ │ ├── OperatorMono-BookItalic.otf
│ │ ├── OperatorMono-Light.otf
│ │ ├── OperatorMono-LightItalic.otf
│ │ ├── OperatorMono-Medium.otf
│ │ ├── OperatorMono-MediumItalic.otf
│ │ ├── OperatorMono-XLight.otf
│ │ └── OperatorMono-XLightItalic.otf
│ ├── OperatorMono-Bold.otf
│ ├── OperatorMono-BoldItalic.otf
│ ├── OperatorMono-Book.otf
│ ├── OperatorMono-BookItalic.otf
│ ├── OperatorMono-Light.otf
│ ├── OperatorMono-LightItalic.otf
│ ├── OperatorMono-Medium.otf
│ ├── OperatorMono-MediumItalic.otf
│ ├── OperatorMono-XLight.otf
│ ├── OperatorMono-XLightItalic.otf
│ └── roboto
│ │ ├── Roboto-Bold.eot
│ │ ├── Roboto-Bold.ttf
│ │ ├── Roboto-Bold.woff
│ │ ├── Roboto-Bold.woff2
│ │ ├── Roboto-Light.eot
│ │ ├── Roboto-Light.ttf
│ │ ├── Roboto-Light.woff
│ │ ├── Roboto-Light.woff2
│ │ ├── Roboto-Medium.eot
│ │ ├── Roboto-Medium.ttf
│ │ ├── Roboto-Medium.woff
│ │ ├── Roboto-Medium.woff2
│ │ ├── Roboto-Regular.eot
│ │ ├── Roboto-Regular.ttf
│ │ ├── Roboto-Regular.woff
│ │ ├── Roboto-Regular.woff2
│ │ ├── Roboto-Thin.eot
│ │ ├── Roboto-Thin.ttf
│ │ ├── Roboto-Thin.woff
│ │ └── Roboto-Thin.woff2
│ ├── guideSpecificFranchise.html
│ ├── img
│ ├── circle.jpeg
│ ├── disney.png
│ ├── flinstone.jpg
│ └── wolf.jpg
│ ├── js
│ ├── jquery.min.js
│ └── materialize.min.js
│ ├── loginForm.html
│ ├── mainGuide.html
│ ├── news.html
│ ├── profilePage.html
│ ├── signupForm.html
│ └── specificItem.html
└── regularCSS
├── addToCollection.html
├── css
└── styles.css
├── fonts
├── Operator Mono
│ ├── OperatorMono-Bold.otf
│ ├── OperatorMono-BoldItalic.otf
│ ├── OperatorMono-Book.otf
│ ├── OperatorMono-BookItalic.otf
│ ├── OperatorMono-Light.otf
│ ├── OperatorMono-LightItalic.otf
│ ├── OperatorMono-Medium.otf
│ ├── OperatorMono-MediumItalic.otf
│ ├── OperatorMono-XLight.otf
│ └── OperatorMono-XLightItalic.otf
├── OperatorMono-Bold.otf
├── OperatorMono-BoldItalic.otf
├── OperatorMono-Book.otf
├── OperatorMono-BookItalic.otf
├── OperatorMono-Light.otf
├── OperatorMono-LightItalic.otf
├── OperatorMono-Medium.otf
├── OperatorMono-MediumItalic.otf
├── OperatorMono-XLight.otf
└── OperatorMono-XLightItalic.otf
├── guideSpecificFranchise.html
├── img
├── circle.jpeg
├── disney.png
├── flinstone.jpg
└── wolf.jpg
├── lead.html
├── loginForm.html
├── mainGuide.html
├── myStuff.html
├── news.html
├── signupForm.html
└── specificItem.html
/analysis.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/likeabbas/cse134b-hw3/bea801574f28201d49b7a315895e9406ca8e8b7f/analysis.pdf
--------------------------------------------------------------------------------
/framework/lead.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
11 |
Add BMO to your collection! Enter what you want to remember and submit!
12 |
13 |
34 |
35 |
36 |
37 |
--------------------------------------------------------------------------------
/framework/wireframes/css/styles.css:
--------------------------------------------------------------------------------
1 | #header {
2 | background-color: #99FFCC;
3 | color: #000;
4 | border: 2px solid #000;
5 | }
6 | #header a {
7 | color: #000;
8 | padding-left: 20px;
9 | }
10 | #navigator {
11 | width: 100%;
12 | background-color: #99FFCC;
13 | border: 2px solid #000;
14 | }
15 | #navigator a {
16 | display: inline-block;
17 | width: 30vw;
18 | text-align: center;
19 | color: #000;
20 | margin: 10px;
21 | }
22 | #navigator a{
23 | border-right: 1px solid #000;
24 | }
25 | #navigator a:last-child {
26 | border-right: none;
27 | }
28 | #preContent {
29 | text-align: center;
30 | }
31 | .frontPagePopFrame {
32 | display: inline-block;
33 | width: 266px;
34 | margin-left: 25px;
35 | margin-right: 25px;
36 | }
37 | .frontPagePopFrameText p {
38 | text-align: center;
39 | }
40 | #preContent {
41 | margin-top: 20px;
42 | }
43 | .circle p {
44 | text-align: center;
45 | }
46 | .circle img {
47 | display: block;
48 | margin: 0 auto;
49 | }
50 | .preContent a {
51 | float: left !important;
52 | }
53 | #rightNews {
54 | float: right;
55 | }
56 | .userCollectionWishlistBox a.btn {
57 | margin: 10px;
58 | }
59 | .userCollectionWishlistBox {
60 | text-align: center;
61 | }
--------------------------------------------------------------------------------
/framework/wireframes/fonts/Operator Mono/OperatorMono-Bold.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/likeabbas/cse134b-hw3/bea801574f28201d49b7a315895e9406ca8e8b7f/framework/wireframes/fonts/Operator Mono/OperatorMono-Bold.otf
--------------------------------------------------------------------------------
/framework/wireframes/fonts/Operator Mono/OperatorMono-BoldItalic.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/likeabbas/cse134b-hw3/bea801574f28201d49b7a315895e9406ca8e8b7f/framework/wireframes/fonts/Operator Mono/OperatorMono-BoldItalic.otf
--------------------------------------------------------------------------------
/framework/wireframes/fonts/Operator Mono/OperatorMono-Book.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/likeabbas/cse134b-hw3/bea801574f28201d49b7a315895e9406ca8e8b7f/framework/wireframes/fonts/Operator Mono/OperatorMono-Book.otf
--------------------------------------------------------------------------------
/framework/wireframes/fonts/Operator Mono/OperatorMono-BookItalic.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/likeabbas/cse134b-hw3/bea801574f28201d49b7a315895e9406ca8e8b7f/framework/wireframes/fonts/Operator Mono/OperatorMono-BookItalic.otf
--------------------------------------------------------------------------------
/framework/wireframes/fonts/Operator Mono/OperatorMono-Light.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/likeabbas/cse134b-hw3/bea801574f28201d49b7a315895e9406ca8e8b7f/framework/wireframes/fonts/Operator Mono/OperatorMono-Light.otf
--------------------------------------------------------------------------------
/framework/wireframes/fonts/Operator Mono/OperatorMono-LightItalic.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/likeabbas/cse134b-hw3/bea801574f28201d49b7a315895e9406ca8e8b7f/framework/wireframes/fonts/Operator Mono/OperatorMono-LightItalic.otf
--------------------------------------------------------------------------------
/framework/wireframes/fonts/Operator Mono/OperatorMono-Medium.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/likeabbas/cse134b-hw3/bea801574f28201d49b7a315895e9406ca8e8b7f/framework/wireframes/fonts/Operator Mono/OperatorMono-Medium.otf
--------------------------------------------------------------------------------
/framework/wireframes/fonts/Operator Mono/OperatorMono-MediumItalic.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/likeabbas/cse134b-hw3/bea801574f28201d49b7a315895e9406ca8e8b7f/framework/wireframes/fonts/Operator Mono/OperatorMono-MediumItalic.otf
--------------------------------------------------------------------------------
/framework/wireframes/fonts/Operator Mono/OperatorMono-XLight.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/likeabbas/cse134b-hw3/bea801574f28201d49b7a315895e9406ca8e8b7f/framework/wireframes/fonts/Operator Mono/OperatorMono-XLight.otf
--------------------------------------------------------------------------------
/framework/wireframes/fonts/Operator Mono/OperatorMono-XLightItalic.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/likeabbas/cse134b-hw3/bea801574f28201d49b7a315895e9406ca8e8b7f/framework/wireframes/fonts/Operator Mono/OperatorMono-XLightItalic.otf
--------------------------------------------------------------------------------
/framework/wireframes/fonts/OperatorMono-Bold.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/likeabbas/cse134b-hw3/bea801574f28201d49b7a315895e9406ca8e8b7f/framework/wireframes/fonts/OperatorMono-Bold.otf
--------------------------------------------------------------------------------
/framework/wireframes/fonts/OperatorMono-BoldItalic.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/likeabbas/cse134b-hw3/bea801574f28201d49b7a315895e9406ca8e8b7f/framework/wireframes/fonts/OperatorMono-BoldItalic.otf
--------------------------------------------------------------------------------
/framework/wireframes/fonts/OperatorMono-Book.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/likeabbas/cse134b-hw3/bea801574f28201d49b7a315895e9406ca8e8b7f/framework/wireframes/fonts/OperatorMono-Book.otf
--------------------------------------------------------------------------------
/framework/wireframes/fonts/OperatorMono-BookItalic.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/likeabbas/cse134b-hw3/bea801574f28201d49b7a315895e9406ca8e8b7f/framework/wireframes/fonts/OperatorMono-BookItalic.otf
--------------------------------------------------------------------------------
/framework/wireframes/fonts/OperatorMono-Light.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/likeabbas/cse134b-hw3/bea801574f28201d49b7a315895e9406ca8e8b7f/framework/wireframes/fonts/OperatorMono-Light.otf
--------------------------------------------------------------------------------
/framework/wireframes/fonts/OperatorMono-LightItalic.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/likeabbas/cse134b-hw3/bea801574f28201d49b7a315895e9406ca8e8b7f/framework/wireframes/fonts/OperatorMono-LightItalic.otf
--------------------------------------------------------------------------------
/framework/wireframes/fonts/OperatorMono-Medium.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/likeabbas/cse134b-hw3/bea801574f28201d49b7a315895e9406ca8e8b7f/framework/wireframes/fonts/OperatorMono-Medium.otf
--------------------------------------------------------------------------------
/framework/wireframes/fonts/OperatorMono-MediumItalic.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/likeabbas/cse134b-hw3/bea801574f28201d49b7a315895e9406ca8e8b7f/framework/wireframes/fonts/OperatorMono-MediumItalic.otf
--------------------------------------------------------------------------------
/framework/wireframes/fonts/OperatorMono-XLight.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/likeabbas/cse134b-hw3/bea801574f28201d49b7a315895e9406ca8e8b7f/framework/wireframes/fonts/OperatorMono-XLight.otf
--------------------------------------------------------------------------------
/framework/wireframes/fonts/OperatorMono-XLightItalic.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/likeabbas/cse134b-hw3/bea801574f28201d49b7a315895e9406ca8e8b7f/framework/wireframes/fonts/OperatorMono-XLightItalic.otf
--------------------------------------------------------------------------------
/framework/wireframes/fonts/roboto/Roboto-Bold.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/likeabbas/cse134b-hw3/bea801574f28201d49b7a315895e9406ca8e8b7f/framework/wireframes/fonts/roboto/Roboto-Bold.eot
--------------------------------------------------------------------------------
/framework/wireframes/fonts/roboto/Roboto-Bold.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/likeabbas/cse134b-hw3/bea801574f28201d49b7a315895e9406ca8e8b7f/framework/wireframes/fonts/roboto/Roboto-Bold.ttf
--------------------------------------------------------------------------------
/framework/wireframes/fonts/roboto/Roboto-Bold.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/likeabbas/cse134b-hw3/bea801574f28201d49b7a315895e9406ca8e8b7f/framework/wireframes/fonts/roboto/Roboto-Bold.woff
--------------------------------------------------------------------------------
/framework/wireframes/fonts/roboto/Roboto-Bold.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/likeabbas/cse134b-hw3/bea801574f28201d49b7a315895e9406ca8e8b7f/framework/wireframes/fonts/roboto/Roboto-Bold.woff2
--------------------------------------------------------------------------------
/framework/wireframes/fonts/roboto/Roboto-Light.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/likeabbas/cse134b-hw3/bea801574f28201d49b7a315895e9406ca8e8b7f/framework/wireframes/fonts/roboto/Roboto-Light.eot
--------------------------------------------------------------------------------
/framework/wireframes/fonts/roboto/Roboto-Light.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/likeabbas/cse134b-hw3/bea801574f28201d49b7a315895e9406ca8e8b7f/framework/wireframes/fonts/roboto/Roboto-Light.ttf
--------------------------------------------------------------------------------
/framework/wireframes/fonts/roboto/Roboto-Light.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/likeabbas/cse134b-hw3/bea801574f28201d49b7a315895e9406ca8e8b7f/framework/wireframes/fonts/roboto/Roboto-Light.woff
--------------------------------------------------------------------------------
/framework/wireframes/fonts/roboto/Roboto-Light.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/likeabbas/cse134b-hw3/bea801574f28201d49b7a315895e9406ca8e8b7f/framework/wireframes/fonts/roboto/Roboto-Light.woff2
--------------------------------------------------------------------------------
/framework/wireframes/fonts/roboto/Roboto-Medium.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/likeabbas/cse134b-hw3/bea801574f28201d49b7a315895e9406ca8e8b7f/framework/wireframes/fonts/roboto/Roboto-Medium.eot
--------------------------------------------------------------------------------
/framework/wireframes/fonts/roboto/Roboto-Medium.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/likeabbas/cse134b-hw3/bea801574f28201d49b7a315895e9406ca8e8b7f/framework/wireframes/fonts/roboto/Roboto-Medium.ttf
--------------------------------------------------------------------------------
/framework/wireframes/fonts/roboto/Roboto-Medium.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/likeabbas/cse134b-hw3/bea801574f28201d49b7a315895e9406ca8e8b7f/framework/wireframes/fonts/roboto/Roboto-Medium.woff
--------------------------------------------------------------------------------
/framework/wireframes/fonts/roboto/Roboto-Medium.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/likeabbas/cse134b-hw3/bea801574f28201d49b7a315895e9406ca8e8b7f/framework/wireframes/fonts/roboto/Roboto-Medium.woff2
--------------------------------------------------------------------------------
/framework/wireframes/fonts/roboto/Roboto-Regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/likeabbas/cse134b-hw3/bea801574f28201d49b7a315895e9406ca8e8b7f/framework/wireframes/fonts/roboto/Roboto-Regular.eot
--------------------------------------------------------------------------------
/framework/wireframes/fonts/roboto/Roboto-Regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/likeabbas/cse134b-hw3/bea801574f28201d49b7a315895e9406ca8e8b7f/framework/wireframes/fonts/roboto/Roboto-Regular.ttf
--------------------------------------------------------------------------------
/framework/wireframes/fonts/roboto/Roboto-Regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/likeabbas/cse134b-hw3/bea801574f28201d49b7a315895e9406ca8e8b7f/framework/wireframes/fonts/roboto/Roboto-Regular.woff
--------------------------------------------------------------------------------
/framework/wireframes/fonts/roboto/Roboto-Regular.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/likeabbas/cse134b-hw3/bea801574f28201d49b7a315895e9406ca8e8b7f/framework/wireframes/fonts/roboto/Roboto-Regular.woff2
--------------------------------------------------------------------------------
/framework/wireframes/fonts/roboto/Roboto-Thin.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/likeabbas/cse134b-hw3/bea801574f28201d49b7a315895e9406ca8e8b7f/framework/wireframes/fonts/roboto/Roboto-Thin.eot
--------------------------------------------------------------------------------
/framework/wireframes/fonts/roboto/Roboto-Thin.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/likeabbas/cse134b-hw3/bea801574f28201d49b7a315895e9406ca8e8b7f/framework/wireframes/fonts/roboto/Roboto-Thin.ttf
--------------------------------------------------------------------------------
/framework/wireframes/fonts/roboto/Roboto-Thin.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/likeabbas/cse134b-hw3/bea801574f28201d49b7a315895e9406ca8e8b7f/framework/wireframes/fonts/roboto/Roboto-Thin.woff
--------------------------------------------------------------------------------
/framework/wireframes/fonts/roboto/Roboto-Thin.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/likeabbas/cse134b-hw3/bea801574f28201d49b7a315895e9406ca8e8b7f/framework/wireframes/fonts/roboto/Roboto-Thin.woff2
--------------------------------------------------------------------------------
/framework/wireframes/guideSpecificFranchise.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |