Skip to content

Commit

Permalink
Merge pull request #1 from daguar/visual-tweaks
Browse files Browse the repository at this point in the history
Update to color scheme, font, and small layout changes
  • Loading branch information
daguar committed Aug 25, 2014
2 parents 0628d2b + f2c9669 commit 4699e38
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 11 deletions.
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

0 comments on commit 4699e38

Please # to comment.