Skip to content
New issue

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

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

Already on GitHub? # to your account

Update to color scheme, font, and small layout changes #1

Merged
merged 1 commit into from
Aug 25, 2014
Merged
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
23 changes: 13 additions & 10 deletions css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,16 @@ input,
select,
textarea {
font-family: 'Open Sans', sans-serif;
color: #666;
}

a {
color: #FD8E25;
color: #00699A;
font-weight: bold;
}

a:hover {
color: #FFC145;
color: #009DE7;
}

ul {
Expand All @@ -21,7 +22,7 @@ ul {

#header {
height: 41px;
background: #19A89D;
background: #00699A;
}

#header img {
Expand Down Expand Up @@ -106,30 +107,31 @@ input {
}

#addressentry {
padding: 10px 0 10px 10px;
padding: 10px 10% 10px 10%;
background: #eee;
}

#address {
width: 80%;
padding: 6px 0px;
padding: 6px 1%;
border: none;
}

#submitaddress {
width: 50px;
width: 80px;
height: 32px;
margin-left: 5px;
background: #FD8E25;
margin-left: 7px;
color: #f8f8ff;
background: #FF8B00;
border: none;
text-transform: uppercase;
/*text-transform: uppercase;*/
font-weight: bold;
font-size: 16px;
padding: 0px;
}

#submitaddress:hover {
background: #FFC145;
background: #FFAE4C;
}

::-webkit-input-placeholder {
Expand All @@ -156,6 +158,7 @@ input {
font-size: 12px;
font-style: italic;
padding: 0px;
margin-left: 10px;
}

#sampleaddresses p {
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<div id="header"><a href="/SF"><img src="img/house_facts.png" /></a></div>
<div id="map"></div>
<form id="addressentry">
<input type="text" id="address" placeholder="Enter an address" /><input type="submit" value="Go" id="submitaddress" />
<input type="text" id="address" placeholder="Enter an address" /><input type="submit" value="Find" id="submitaddress" />
<div id="sampleaddresses">
<p>For example <a href="#" onclick="$('#address').val($(this).text());$('#addressentry').submit(); return false;" >670 Stevenson St.</a>,
<a href="#" onclick="$('#address').val($(this).text());$('#addressentry').submit(); return false;" >50 Turk St.</a></p>
Expand Down