more semi-drastic changes.
This commit is contained in:
parent
de8d8d5cb5
commit
1223011a4f
6 changed files with 52 additions and 8 deletions
|
|
@ -12,6 +12,15 @@
|
||||||
|
|
||||||
.span-6.last
|
.span-6.last
|
||||||
%div{ :style => "padding: 1em" }
|
%div{ :style => "padding: 1em" }
|
||||||
|
%div.big_text
|
||||||
|
daniel grippi
|
||||||
|
|
||||||
|
%img{:src=>"/images/bp.jpeg", :id => "profile_image"}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
%div.big_text
|
%div.big_text
|
||||||
requests
|
requests
|
||||||
|
|
||||||
|
|
@ -22,8 +31,13 @@
|
||||||
|
|
||||||
.prepend-2.span-16.last
|
.prepend-2.span-16.last
|
||||||
%div{ :style => "padding: 1em" }
|
%div{ :style => "padding: 1em" }
|
||||||
|
|
||||||
%div.big_text
|
%div.big_text
|
||||||
your feed
|
updates
|
||||||
|
|
||||||
|
/%div#publish
|
||||||
|
/- form_for 'update' do |f|
|
||||||
|
/= f.text_field :thought
|
||||||
|
|
||||||
%ul#stream
|
%ul#stream
|
||||||
- for post in @posts
|
- for post in @posts
|
||||||
|
|
|
||||||
5
app/views/status_messages/_pane.html.haml
Normal file
5
app/views/status_messages/_pane.html.haml
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
%sp.from
|
||||||
|
= post.owner
|
||||||
|
%sp{:style => "opacity: 0.7"} said
|
||||||
|
%sp.message= post.message
|
||||||
|
|
||||||
BIN
public/images/bp.jpeg
Normal file
BIN
public/images/bp.jpeg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 261 KiB |
BIN
public/images/diaspora_white.png
Normal file
BIN
public/images/diaspora_white.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.2 KiB |
|
|
@ -88,7 +88,7 @@ ul#stream {
|
||||||
list-style: none;
|
list-style: none;
|
||||||
padding: 2em;
|
padding: 2em;
|
||||||
-webkit-box-shadow: 0 4px 5px -5px black; }
|
-webkit-box-shadow: 0 4px 5px -5px black; }
|
||||||
ul#stream li:first-child {
|
ul#stream > li:first-child {
|
||||||
padding-top: 0; }
|
padding-top: 0; }
|
||||||
|
|
||||||
sp.message {
|
sp.message {
|
||||||
|
|
@ -119,4 +119,15 @@ div.big_text {
|
||||||
|
|
||||||
#info_top {
|
#info_top {
|
||||||
margin-top: -140px;
|
margin-top: -140px;
|
||||||
margin-bottom: 70px; }
|
margin-bottom: 50px; }
|
||||||
|
|
||||||
|
#publish input {
|
||||||
|
font-size: 30px;
|
||||||
|
padding: 7px;
|
||||||
|
border-radius: 5px;
|
||||||
|
width: 90%; }
|
||||||
|
|
||||||
|
#profile_image {
|
||||||
|
margin-top: 1em;
|
||||||
|
width: 240px;
|
||||||
|
border: 2px solid #eaeaea; }
|
||||||
|
|
|
||||||
|
|
@ -106,7 +106,6 @@ h4
|
||||||
:border-radius 5px
|
:border-radius 5px
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
ul#stream
|
ul#stream
|
||||||
:margin 0
|
:margin 0
|
||||||
:padding 0
|
:padding 0
|
||||||
|
|
@ -116,9 +115,8 @@ ul#stream
|
||||||
:list-style none
|
:list-style none
|
||||||
:padding 2em
|
:padding 2em
|
||||||
:-webkit-box-shadow 0 4px 5px -5px #000
|
:-webkit-box-shadow 0 4px 5px -5px #000
|
||||||
li:first-child
|
> li:first-child
|
||||||
:padding
|
:padding-top 0
|
||||||
:top 0
|
|
||||||
|
|
||||||
|
|
||||||
sp.message
|
sp.message
|
||||||
|
|
@ -160,5 +158,21 @@ div.big_text
|
||||||
#info_top
|
#info_top
|
||||||
:margin
|
:margin
|
||||||
:top -140px
|
:top -140px
|
||||||
:bottom 70px
|
:bottom 50px
|
||||||
|
|
||||||
|
#publish
|
||||||
|
input
|
||||||
|
:font
|
||||||
|
:size 30px
|
||||||
|
:padding 7px
|
||||||
|
:border-radius 5px
|
||||||
|
:width 90%
|
||||||
|
|
||||||
|
|
||||||
|
#profile_image
|
||||||
|
:margin
|
||||||
|
:top 1em
|
||||||
|
:width 240px
|
||||||
|
|
||||||
|
:border 2px solid #eaeaea
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue