user name is bigger
This commit is contained in:
parent
4d2b11310b
commit
4c3a51833f
5 changed files with 15 additions and 13 deletions
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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; }
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue