Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

i made some glorious changes #2

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
9 changes: 6 additions & 3 deletions hw1/code/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -96,24 +96,27 @@ textarea {
* { margin: 0; padding: 0;}

body {
font-family: Futura, Helvetica, Arial, sans-serif;
background: url("../img/sos.png");
font-family: "Comic Sans MS", cursive;
background: url("../img/otters.jpg");
}

#wrapper {
width: 960px;
margin: 10px auto;
background-color: rgba(255, 255, 255, 0.7);
}

section {
margin: 40px 0;
}

h1 {
color: red;
font-size: 4.3em;
}

h3 {
color: orange;
display: inline;

padding: 10px 12px;
Expand All @@ -130,7 +133,7 @@ textarea {
}

h3#verbWord {
color: #DD4B40;
color: purple;
}

/******************** BUTTONS *********************/
Expand Down
Binary file added hw1/code/img/otters.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions hw1/code/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<section id="main">
<h1>Hi.</h1>
<h3>My name is Owen.</h3> <br/>
<h3>I am a</h3>
<h3 style="color:yellow;">I am a</h3>
<article id="adjective">
<button id="adLeft" onclick="changeAdjective(this)" src="img/buttons/adLeft.png"></button>
<h3 id = "adjectiveWord" onclick="changeAdjective(this)"></h3>
Expand All @@ -29,7 +29,7 @@ <h3 id = "adjectiveWord" onclick="changeAdjective(this)"></h3>
<h3 id = "nounWord" onclick="changeNoun(this)"></h3>
<button id="nounRight" onclick="changeNoun(this)" src="img/buttons/nounRight.png"></button>
</article>
<h3>who likes to</h3>
<h3 style="color:navy;">who likes to</h3>
<article id="verb">
<button id="verbLeft" onclick="changeVerb(this)" src="img/buttons/verbLeft.png"></button>
<h3 id = "verbWord" onclick="changeVerb(this)"></h3>
Expand Down