user name is bigger

This commit is contained in:
danielvincent 2010-07-23 22:35:12 -07:00
parent 4d2b11310b
commit 4c3a51833f
5 changed files with 15 additions and 13 deletions

View file

@ -1,8 +1,6 @@
- if user_signed_in?
%h1#user_name
= link_to current_user.real_name, root_path
%span.description
= my_latest_message
%h1= title_for_page
= render "shared/publisher"

View file

@ -50,14 +50,14 @@
.container
.span-24.last
.span-3.append-1.last
.span-18.append-3.last
= yield
.span-3.last
= link_to person_image_tag(User.owner), root_path
= link_to "Edit your profile", edit_user_path(current_user)
%br
%br
= render 'people/sidebar' if user_signed_in?
.span-18.last
= yield
.span-24.last
= render "posts/debug"

View file

@ -10,6 +10,11 @@
= stylesheet_link_tag "sessions"
/= javascript_include_tag"http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"
= javascript_include_tag 'jquery142', 'google'
:javascript
$(document).ready(function(){
$("#user_password").focus();
});
= csrf_meta_tag
= yield(:head)

View file

@ -68,10 +68,7 @@ header {
color: #555555;
background-color: #2b2726;
border-bottom: 1px solid #444444;
padding: 8px 0;
box-shadow: 0 2px 2px black;
-webkit-box-shadow: 0 2px 2px black;
-moz-box-shadow: 0 2px 2px black; }
padding: 8px 0; }
header #diaspora_text {
font-family: "BrandonGrotesqueLightRegular";
font-size: 24px;
@ -157,7 +154,9 @@ form {
#user_name {
display: inline;
margin-bottom: 1em; }
margin-bottom: 1em;
font-size: 70px;
line-height: 100px; }
#user_name a {
color: black; }

View file

@ -75,9 +75,6 @@ header
:border
:bottom 1px solid #444
:padding 8px 0
:box-shadow 0 2px 2px #000
:-webkit-box-shadow 0 2px 2px #000
:-moz-box-shadow 0 2px 2px #000
#diaspora_text
:font
@ -185,6 +182,9 @@ form
:display inline
:margin
:bottom 1em
:font
:size 70px
:line-height 100px
a
:color #000