Just archiving this project from my Open Source Software class.

This commit is contained in:
2021-01-26 16:41:13 -06:00
commit d1bac9a520
50 changed files with 19232 additions and 0 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 312 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 208 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 260 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 260 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 252 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 252 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 280 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 324 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 309 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.2 KiB

File diff suppressed because it is too large Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large Load Diff
File diff suppressed because one or more lines are too long
+6167
View File
File diff suppressed because it is too large Load Diff
File diff suppressed because one or more lines are too long
+80
View File
@@ -0,0 +1,80 @@
/* main html tag css styling */
body{
background-color:#E0E0E0;
}
footer{
width:100%;
text-align: center;
}
aside{
float:right;
}
header{
background:url('../images/banner.png');
height:100px;
}
header p{
float:right;
color:#E0E0E0;
text-decoration:none;
margin-right:1%;
}
/* child element styling */
nav ul{
list-style:none;
padding:0;
text-align:center;
}
nav ul li{
display:inline;
margin-right:2%;
}
nav ul li:hover{
text-decoration:underline;
color:#FF0000;
}
section h1{
text-align:center;
}
ul li a{
text-decoration: none;
}
/* class elements styling */
div.content{
width:75%;
margin-left:13%;
}
div.shopping-cart{
float:right;
}
section.login{
width:50%;
float:right;
margin-right:25%;
}
a.sign-in{
float:right;
color:#E0E0E0;
text-decoration:none;
margin-right:1%;
}
a.sign-in:hover{
text-decoration:none;
border-bottom: 1px solid #FF0000;
}
/* id element styling */
#itemRow{
width:70%;
height:30%;
margin-left:13%;
}
#iteminfo{
font-size:14px;
color: rgb(64,64,64);
}
div#shopping-cart{
text-align:left;
padding-left:40%;
}