some sass cleanup
This commit is contained in:
parent
c542c08e38
commit
26d675af11
6 changed files with 70 additions and 103 deletions
|
|
@ -1,6 +1,6 @@
|
||||||
- title "Bookmarks"
|
- title "Bookmarks"
|
||||||
|
|
||||||
%div.big_text
|
%h1
|
||||||
%p.description= link_to "New Bookmark", new_bookmark_path
|
%p.description= link_to "New Bookmark", new_bookmark_path
|
||||||
|
|
||||||
%ul#stream
|
%ul#stream
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
%h3 home
|
||||||
%ul#stream
|
%ul#stream
|
||||||
- for post in @messages
|
- for post in @messages
|
||||||
= render "status_messages/pane", :post => post
|
= render "status_messages/pane", :post => post
|
||||||
|
|
|
||||||
|
|
@ -14,6 +14,17 @@
|
||||||
= csrf_meta_tag
|
= csrf_meta_tag
|
||||||
= yield(:head)
|
= yield(:head)
|
||||||
|
|
||||||
|
|
||||||
|
:javascript
|
||||||
|
$(document).ready(function(){
|
||||||
|
$('a').hover(function(){
|
||||||
|
$(this).fadeTo(60, 0.5);
|
||||||
|
}, function(){
|
||||||
|
$(this).fadeTo(80, 1);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
%body
|
%body
|
||||||
%header
|
%header
|
||||||
%a#diaspora_text{:href => root_path}
|
%a#diaspora_text{:href => root_path}
|
||||||
|
|
@ -26,20 +37,22 @@
|
||||||
= link_to "login", new_user_session_path
|
= link_to "login", new_user_session_path
|
||||||
|
|
||||||
#header_below
|
#header_below
|
||||||
%h1#user_name
|
- if user_signed_in?
|
||||||
= User.first.email
|
%h1#user_name
|
||||||
%span.description= StatusMessage.my_newest.message
|
= link_to User.first.email, root_url
|
||||||
|
%span.description= StatusMessage.my_newest.message
|
||||||
|
|
||||||
%img{:src => '/images/mocks/bp.jpeg'}
|
|
||||||
|
|
||||||
%nav
|
%img{:src => '/images/mocks/bp.jpeg'}
|
||||||
%ul.nav
|
|
||||||
%li= link_to "home", root_path
|
%nav
|
||||||
%li= link_to "users", users_path
|
%ul.nav
|
||||||
%li= link_to "status messages", status_messages_path
|
%li= link_to "home", root_path
|
||||||
%li= link_to "bookmarks", bookmarks_path
|
%li= link_to "users", users_path
|
||||||
%li= link_to "blogs", blogs_path
|
%li= link_to "status messages", status_messages_path
|
||||||
%li= link_to "friends", friends_path
|
%li= link_to "bookmarks", bookmarks_path
|
||||||
|
%li= link_to "blogs", blogs_path
|
||||||
|
%li= link_to "friends", friends_path
|
||||||
|
|
||||||
- flash.each do |name, msg|
|
- flash.each do |name, msg|
|
||||||
= content_tag :div, msg, :id => "flash_#{name}"
|
= content_tag :div, msg, :id => "flash_#{name}"
|
||||||
|
|
@ -47,6 +60,5 @@
|
||||||
%br
|
%br
|
||||||
%br
|
%br
|
||||||
%br
|
%br
|
||||||
%br
|
#content
|
||||||
%br
|
= yield
|
||||||
= yield
|
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,4 @@
|
||||||
- title "status messages"
|
%h1.big_text= link_to "New Status Message", new_status_message_path
|
||||||
|
|
||||||
%div.big_text
|
|
||||||
%p.description= my_latest_message
|
|
||||||
%p.description= link_to "New Status Message", new_status_message_path
|
|
||||||
|
|
||||||
%ul#stream
|
%ul#stream
|
||||||
- for status_message in @status_messages
|
- for status_message in @status_messages
|
||||||
= render "pane", :post => status_message
|
= render "pane", :post => status_message
|
||||||
|
|
|
||||||
|
|
@ -6,6 +6,8 @@ body {
|
||||||
a {
|
a {
|
||||||
color: #cc1e14;
|
color: #cc1e14;
|
||||||
text-decoration: none; }
|
text-decoration: none; }
|
||||||
|
a:hover {
|
||||||
|
color: #cc1e14; }
|
||||||
|
|
||||||
#flash_notice,
|
#flash_notice,
|
||||||
#flash_error,
|
#flash_error,
|
||||||
|
|
@ -78,7 +80,8 @@ ul.nav {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
width: 200px; }
|
width: 200px;
|
||||||
|
margin-top: 300px; }
|
||||||
ul.nav li {
|
ul.nav li {
|
||||||
display: block;
|
display: block;
|
||||||
padding: 5px 10px;
|
padding: 5px 10px;
|
||||||
|
|
@ -104,20 +107,21 @@ ul.nav {
|
||||||
height: 40px;
|
height: 40px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
padding: 1em;
|
padding: 1em;
|
||||||
padding-top: 4em;
|
padding-top: 40px;
|
||||||
padding-bottom: 0;
|
|
||||||
top: 0;
|
top: 0;
|
||||||
background-color: rgba(255, 255, 255, 0.8);
|
background-color: rgba(255, 255, 255, 0.9);
|
||||||
margin-left: -2em; }
|
margin-left: -2em; }
|
||||||
#header_below img {
|
#header_below img {
|
||||||
|
position: absolute;
|
||||||
width: 200px;
|
width: 200px;
|
||||||
border-radius: 5px; }
|
border-radius: 5px; }
|
||||||
|
|
||||||
|
#content {
|
||||||
|
margin-left: 210px; }
|
||||||
|
|
||||||
ul#stream {
|
ul#stream {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
margin-left: 210px;
|
|
||||||
padding: 0;
|
padding: 0;
|
||||||
text-shadow: 0 1px white;
|
|
||||||
color: #666666;
|
color: #666666;
|
||||||
width: 60%;
|
width: 60%;
|
||||||
min-width: 500px;
|
min-width: 500px;
|
||||||
|
|
@ -128,11 +132,10 @@ ul#stream {
|
||||||
border-bottom: 1px solid #f1f1f1; }
|
border-bottom: 1px solid #f1f1f1; }
|
||||||
|
|
||||||
li.message {
|
li.message {
|
||||||
line-height: 110%;
|
line-height: 140%;
|
||||||
font-size: 120%;
|
font-size: 120%;
|
||||||
font-family: "Lucida Grande";
|
font-family: "Lucida Grande";
|
||||||
color: #999999;
|
color: #999999; }
|
||||||
text-shadow: none; }
|
|
||||||
li.message span.from {
|
li.message span.from {
|
||||||
color: black;
|
color: black;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
|
|
@ -148,18 +151,13 @@ h1 {
|
||||||
line-height: 36px; }
|
line-height: 36px; }
|
||||||
h1 p.description, h1 span.description {
|
h1 p.description, h1 span.description {
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
|
font-family: "lucida grande";
|
||||||
color: #999999; }
|
color: #999999; }
|
||||||
h1 .big_number {
|
h1 .big_number {
|
||||||
font-size: 300%;
|
font-size: 300%;
|
||||||
line-height: 100%; }
|
line-height: 100%; }
|
||||||
h1 .filters {
|
|
||||||
position: absolute;
|
|
||||||
right: 0;
|
|
||||||
display: inline;
|
|
||||||
font-size: 12px;
|
|
||||||
font-weight: normal; }
|
|
||||||
|
|
||||||
div.small_text {
|
h3 {
|
||||||
position: relative;
|
position: relative;
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
font-weight: bold; }
|
font-weight: bold; }
|
||||||
|
|
@ -171,12 +169,6 @@ div.small_text {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
margin-bottom: 1em; }
|
margin-bottom: 1em; }
|
||||||
|
|
||||||
#profile_image {
|
|
||||||
display: inline block;
|
|
||||||
margin-top: 0;
|
|
||||||
width: 100px;
|
|
||||||
border: 2px solid #eaeaea; }
|
|
||||||
|
|
||||||
form {
|
form {
|
||||||
font-size: 430%;
|
font-size: 430%;
|
||||||
margin: 1em;
|
margin: 1em;
|
||||||
|
|
@ -186,12 +178,7 @@ form {
|
||||||
padding: 0.2em;
|
padding: 0.2em;
|
||||||
max-width: 100%; }
|
max-width: 100%; }
|
||||||
|
|
||||||
.centered {
|
#user_name a {
|
||||||
text-align: center; }
|
color: black; }
|
||||||
|
#user_name a:hover {
|
||||||
.info_pane {
|
color: #cc1e14; }
|
||||||
padding: 1em;
|
|
||||||
background-color: #1a1a21;
|
|
||||||
color: #f5fafd;
|
|
||||||
margin-bottom: 1em;
|
|
||||||
border-radius: 2px; }
|
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,8 @@ a
|
||||||
:color #CC1E14
|
:color #CC1E14
|
||||||
:text
|
:text
|
||||||
:decoration none
|
:decoration none
|
||||||
|
&:hover
|
||||||
|
:color #CC1E14
|
||||||
|
|
||||||
#flash_notice,
|
#flash_notice,
|
||||||
#flash_error,
|
#flash_error,
|
||||||
|
|
@ -95,6 +97,8 @@ ul.nav
|
||||||
:margin 0
|
:margin 0
|
||||||
:width 200px
|
:width 200px
|
||||||
|
|
||||||
|
:margin-top 300px
|
||||||
|
|
||||||
li
|
li
|
||||||
:display block
|
:display block
|
||||||
:padding 5px 10px
|
:padding 5px 10px
|
||||||
|
|
@ -128,48 +132,40 @@ ul.nav
|
||||||
:height 40px
|
:height 40px
|
||||||
:width 100%
|
:width 100%
|
||||||
:padding 1em
|
:padding 1em
|
||||||
:top 4em
|
:top 40px
|
||||||
:bottom 0
|
|
||||||
:top 0
|
:top 0
|
||||||
|
|
||||||
:background
|
:background
|
||||||
:color rgba( 255, 255, 255, 0.8)
|
:color rgba( 255, 255, 255, 0.9)
|
||||||
|
|
||||||
//:background
|
|
||||||
//:color rgba(230, 239, 247, 0.5)
|
|
||||||
:margin
|
:margin
|
||||||
:left -2em
|
:left -2em
|
||||||
|
|
||||||
img
|
img
|
||||||
|
:position absolute
|
||||||
:width 200px
|
:width 200px
|
||||||
:border-radius 5px
|
:border-radius 5px
|
||||||
|
|
||||||
|
#content
|
||||||
|
:margin-left 210px
|
||||||
|
|
||||||
ul#stream
|
ul#stream
|
||||||
:margin 0
|
:margin 0
|
||||||
:margin-left 210px
|
|
||||||
:padding 0
|
:padding 0
|
||||||
:text-shadow 0 1px #fff
|
|
||||||
:color #666
|
:color #666
|
||||||
|
:width 60%
|
||||||
|
:min-width 500px
|
||||||
|
:max-width 700px
|
||||||
|
|
||||||
> li
|
> li
|
||||||
:list-style none
|
:list-style none
|
||||||
:padding 1em
|
:padding 1em
|
||||||
:border
|
:border
|
||||||
:bottom 1px solid #f1f1f1
|
:bottom 1px solid #f1f1f1
|
||||||
:width 60%
|
|
||||||
:min-width 500px
|
|
||||||
:max-width 700px
|
|
||||||
|
|
||||||
|
|
||||||
li.message
|
li.message
|
||||||
:line-height 110%
|
:line-height 140%
|
||||||
:font
|
:font
|
||||||
:size 120%
|
:size 120%
|
||||||
:family 'Lucida Grande'
|
:family 'Lucida Grande'
|
||||||
:color #999
|
:color #999
|
||||||
:text-shadow none
|
|
||||||
|
|
||||||
span.from
|
span.from
|
||||||
:color #000
|
:color #000
|
||||||
|
|
@ -182,7 +178,6 @@ li.message
|
||||||
:color #bababa
|
:color #bababa
|
||||||
:font-size 70%
|
:font-size 70%
|
||||||
|
|
||||||
|
|
||||||
h1
|
h1
|
||||||
:position relative
|
:position relative
|
||||||
:font
|
:font
|
||||||
|
|
@ -193,6 +188,7 @@ h1
|
||||||
p.description, span.description
|
p.description, span.description
|
||||||
:font
|
:font
|
||||||
:weight normal
|
:weight normal
|
||||||
|
:family 'lucida grande'
|
||||||
:color #999
|
:color #999
|
||||||
|
|
||||||
.big_number
|
.big_number
|
||||||
|
|
@ -200,15 +196,7 @@ h1
|
||||||
:size 300%
|
:size 300%
|
||||||
:line-height 100%
|
:line-height 100%
|
||||||
|
|
||||||
.filters
|
h3
|
||||||
:position absolute
|
|
||||||
:right 0
|
|
||||||
:display inline
|
|
||||||
:font
|
|
||||||
:size 12px
|
|
||||||
:weight normal
|
|
||||||
|
|
||||||
div.small_text
|
|
||||||
:position relative
|
:position relative
|
||||||
:font
|
:font
|
||||||
:size 18px
|
:size 18px
|
||||||
|
|
@ -224,15 +212,6 @@ div.small_text
|
||||||
:margin
|
:margin
|
||||||
:bottom 1em
|
:bottom 1em
|
||||||
|
|
||||||
|
|
||||||
#profile_image
|
|
||||||
:display inline block
|
|
||||||
:margin
|
|
||||||
:top 0
|
|
||||||
:width 100px
|
|
||||||
:border 2px solid #eaeaea
|
|
||||||
|
|
||||||
|
|
||||||
form
|
form
|
||||||
:font
|
:font
|
||||||
:size 430%
|
:size 430%
|
||||||
|
|
@ -245,15 +224,8 @@ form
|
||||||
:padding 0.2em
|
:padding 0.2em
|
||||||
:max-width 100%
|
:max-width 100%
|
||||||
|
|
||||||
|
#user_name
|
||||||
.centered
|
a
|
||||||
:text-align center
|
:color #000
|
||||||
|
&:hover
|
||||||
.info_pane
|
:color #CC1E14
|
||||||
:padding 1em
|
|
||||||
:background
|
|
||||||
:color #1A1A21
|
|
||||||
:color #f5fafd
|
|
||||||
:margin
|
|
||||||
:bottom 1em
|
|
||||||
:border-radius 2px
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue