retina-ify icons; fix 404 scrolling issue; serif -> san-serif in some style [ci skip]

This commit is contained in:
danielgrippi 2012-04-26 20:25:25 -07:00
parent e55b305bca
commit c413a494d7
17 changed files with 24 additions and 15 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

View file

@ -65,6 +65,11 @@
@include transition(opacity); @include transition(opacity);
@include opacity(0.4); @include opacity(0.4);
&.small img {
height : 40px;
width : 40px;
}
&:hover { &:hover {
@include opacity(1); @include opacity(1);
text-decoration : none; text-decoration : none;
@ -126,6 +131,9 @@
.cake { .cake {
@include opacity(0.63); @include opacity(0.63);
width : 11px;
height : 15px;
margin-right : 2px; margin-right : 2px;
position : relative; position : relative;
top : -3px; top : -3px;

View file

@ -1,16 +1,19 @@
/* Roboto */ /* Roboto */
@font-face { @font-face {
font-family : Roboto; font-family : Roboto;
src : image-url('fonts/Roboto-Regular.ttf') src : image-url('fonts/Roboto-Regular.ttf');
weight : normal;
} }
@font-face { @font-face {
font-family : Roboto-Bold; font-family : Roboto-Bold;
src : image-url('fonts/Roboto-Bold.ttf') src : image-url('fonts/Roboto-Bold.ttf');
weight : normal;
} }
body, p, h1, h2, h3, h4, h5, h6, textarea, input, * { body, p, h1, h2, h3, h4, h5, h6, textarea, input, * {
font-family : Roboto, Helvetica, sans; font-family : Roboto, Helvetica, sans-serif;
font-weight : normal;
} }
a { a {

View file

@ -15,10 +15,9 @@
<span class="divider">•</span> <span class="divider">•</span>
{{/if}} {{/if}}
{{#if birthday}} {{#if birthday}}
<span class="stat"> <span class="stat">
<img src='{{imageUrl "buttons/bday.png"}}' class="cake" /> <img src='{{imageUrl "buttons/bday@2x.png"}}' class="cake" />
{{birthday}} {{birthday}}
</span> </span>
<span class="divider">•</span> <span class="divider">•</span>
@ -26,17 +25,16 @@
<span class="stat services"> <span class="stat services">
<a href="https://facebook.com" class="service" target="_blank"> <a href="https://facebook.com" class="service" target="_blank">
<img src='{{imageUrl "buttons/service-icons/fb.png"}}' /> <img src='{{imageUrl "buttons/service-icons/fb@2x.png"}}' />
</a> </a>
<a href="https://twitter.com" class="service" target="_blank"> <a href="https://twitter.com" class="service" target="_blank">
<img src='{{imageUrl "buttons/service-icons/twitter.png"}}' /> <img src='{{imageUrl "buttons/service-icons/twitter@2x.png"}}' />
</a> </a>
<a href="https://tumblr.com" class="service" target="_blank"> <a href="https://tumblr.com" class="service" target="_blank">
<img src='{{imageUrl "buttons/service-icons/tumblr.png"}}' /> <img src='{{imageUrl "buttons/service-icons/tumblr@2x.png"}}' />
</a> </a>
</span> </span>
</div> </div>
</div> </div>
<!--<dl>--> <!--<dl>-->

View file

@ -19,11 +19,11 @@
<section id="profile-controls"> <section id="profile-controls">
{{#if isOwnProfile}} {{#if isOwnProfile}}
<a href="#composer" title="New Post" class="control" rel="facebox"> <a href="#composer" title="New Post" class="control small" rel="facebox">
<img src='{{imageUrl "buttons/pub.png"}}' /> <img src='{{imageUrl "buttons/pub@2x.png"}}' />
</a> </a>
<a href="#" title="Edit Layout" id="edit-mode-toggle" class="control"> <a href="#" title="Edit Layout" id="edit-mode-toggle" class="control small">
<img src='{{imageUrl "buttons/editgear.png"}}' /> <img src='{{imageUrl "buttons/edit@2x.png"}}' />
</a> </a>
{{else}} {{else}}
<a href="#" class="control"> <a href="#" class="control">

View file

@ -8,13 +8,13 @@
body, body,
html { html {
height: 100%; overflow-y : hidden;
} }
body { body {
margin-bottom: 0; margin-bottom: 0;
padding-bottom: 0; padding-bottom: 0;
margin-top: 10%; margin-top: 5%;
background-color: #fff; background-color: #fff;
color: #666; color: #666;
text-align: center; text-align: center;