Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
975bf4b
I put the moustache on
sandbox07 Jan 11, 2017
91968aa
Add arms
Jan 11, 2017
7280cba
Merge pull request #1 from sandbox07/master
ssaamm Jan 11, 2017
a009244
moustache and ears
sandbox07 Jan 11, 2017
550a9d6
eyebrows / mouth
Jan 11, 2017
22b2efe
Added shoes
RCTumolac Jan 11, 2017
77b706d
Add Nose
FrostieForest19 Jan 11, 2017
b6261c2
Merge pull request #2 from sandbox07/master
ssaamm Jan 11, 2017
ae07883
Merge branch 'master' into master
ssaamm Jan 11, 2017
2c0ca4d
Merge pull request #4 from RCTumolac/master
ssaamm Jan 11, 2017
52fef07
Merge branch 'master' into master
ssaamm Jan 11, 2017
cd0c4fd
Merge pull request #5 from FrostieForest19/master
ssaamm Jan 11, 2017
86b2755
My Eyes
Bapjorge Jan 11, 2017
a05ba2b
Merge branch 'master' into master
ssaamm Jan 11, 2017
f60f702
Merge pull request #3 from pursin/master
ssaamm Jan 11, 2017
cebd6c9
Fix missing rbrace
Jan 11, 2017
8e89fab
add hat
Jan 11, 2017
3d65b3b
Fixed Eyes
Bapjorge Jan 11, 2017
e86f8e3
Merge branch 'master' into master
ssaamm Jan 11, 2017
3d5942e
Merge pull request #6 from Bapjorge/master
ssaamm Jan 11, 2017
48d728b
Merge branch 'master' into master
ssaamm Jan 11, 2017
999f36b
Merge pull request #7 from TimothyMaraj/master
ssaamm Jan 11, 2017
59a0936
I made change
evila512 Jan 11, 2017
abb9ef8
Merge branch 'master' into master
ssaamm Jan 11, 2017
3c7adec
Merge pull request #8 from evila512/master
ssaamm Jan 11, 2017
6667ee5
Lower eyes
Bapjorge Jan 11, 2017
6898fe5
Merge branch 'master' of https://github.com/Bapjorge/Mr_Potato_Head
Bapjorge Jan 11, 2017
912cdc9
Merge branch 'master' into add-arms
ssaamm Jan 11, 2017
fda49a1
Merge pull request #9 from RedPanda56/add-arms
ssaamm Jan 11, 2017
7e9b698
Merge pull request #10 from Bapjorge/master
ssaamm Jan 11, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
61 changes: 43 additions & 18 deletions potato.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,24 +10,35 @@ h1 {
border: 2px solid black;
margin-left: auto;
margin-right: auto;
background-color: white;
background-color: yellow;
}

#potato img {
#potato img {
position: absolute;
}

/* Insert CSS for body below this line*/
#body {
top: 28px; left: 68px;
top: 30px; left: 68px;
}
/* Insert CSS for arms below this line*/

#arms_image {
top: 178px;
left: 30px;
}
#eyes_image {
top: 20%; left: 36%;
}



/* Insert CSS for ears below this line*/

#ears_image{
width: 200px;
margin-top: 70px;
margin-left: 87px;

}



Expand All @@ -37,27 +48,35 @@ h1 {


/* Insert CSS for mouth below this line*/




/* Insert CSS for nose below this line*/



#nose_image {
margin-top: 120px;
margin-left: 130px;
}

/* Insert CSS for eyebrows below this line*/
#eyebrows_image{
top: 102px; left: 109px;

}

#glasses_image {
top: 60px; left: 100px;
}



/* Insert CSS for glasses below this line*/





/* Insert CSS for hat below this line*/

#hat_image{
margin-top:.5%;
margin-right:20%;
margin-left: 20%;


}



Expand All @@ -67,12 +86,18 @@ h1 {


/* Insert CSS for moustache below this line*/

#moustache_image{
margin-top: 160px;
margin-left: 92px;
}



/* Insert CSS for shoes below this line*/

#shoes_image{
top: 60%;
left: 13%;
}



Expand Down
18 changes: 9 additions & 9 deletions potatohead.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@ <h1>Mr. Potato Head</h1>

<div id="potato">
<img id="body" src="assets/body.png">
<img id="arms_image">
<img id="ears_image">
<img id="eyes_image" >
<img id="arms_image" src="assets/arms.png">
<img id="ears_image" src="assets/ears.png">
<img id="eyes_image" src="assets/eyes.png">
<img id="mouth_image" >
<img id="nose_image" >
<img id="eyebrows_image" >
<img id="glasses_image" >
<img id="hat_image" >
<img id="moustache_image" >
<img id="shoes_image" >
<img id="nose_image" src="assets/nose.png">
<img id="eyebrows_image" src="assets/eyebrows.png">
<img id="glasses_image" src="assets/glasses.png">
<img id="hat_image" src="assets/hat.png" >
<img id="shoes_image" src = "assets/shoes.png">
<img id="moustache_image" src="assets/moustache.png">
<img id="cane">
<img id="earrings">
<img id="hatflower">
Expand Down