Foobar theme blog styling added
authorJaiditya Mathur <jaiditya.mathur@gmail.com>
Thu, 16 Aug 2012 21:01:08 +0530
changeset 16979c96d66ae73d
parent 1696 0538829f868e
child 1698 ed73f94cee2d
Foobar theme blog styling added
MoinMoin/themes/foobar/static/css/common.css
MoinMoin/themes/foobar/static/css/stylus/main.styl
     1.1 --- a/MoinMoin/themes/foobar/static/css/common.css	Thu Aug 16 20:52:40 2012 +0530
     1.2 +++ b/MoinMoin/themes/foobar/static/css/common.css	Thu Aug 16 21:01:08 2012 +0530
     1.3 @@ -230,6 +230,15 @@
     1.4  #moin-create-table tbody tr th{text-align:center;background:#808080;margin:2px}
     1.5  #moin-create-table tbody tr td{text-align:center;background:#f4f4f4;}
     1.6  #moin-create-table tbody tr td a{color:#1e90ff}
     1.7 +#moin-blog-header{margin:1em 0 -1em 0}
     1.8 +#moin-blog-content{padding:0 2em 0 0;display:table-cell}
     1.9 +#moin-blog-sidebar{width:15em;display:table-cell}
    1.10 +.moin-blog-entry-info{font-size:.8em;color:#616161}
    1.11 +.moin-blog-entry-bottominfo{font-size:.8em;color:#616161;padding:0 1em;border:1px solid #ccc}
    1.12 +ul.moin-blog-entry-tags{list-style:none;display:inline;margin:0;}
    1.13 +ul.moin-blog-entry-tags li{display:inline;}
    1.14 +ul.moin-blog-entry-tags li:after{content:","}
    1.15 +ul.moin-blog-entry-tags li:last-child:after{content:""}
    1.16  .moin-clr{clear:both}
    1.17  .moin-index-message{width:50%;margin:1em auto;text-align:center;display:none;}
    1.18  .moin-index-message span{padding:4px;background-color:#007cef;color:#fff;border:1px solid #ccc;border-radius:5px}
     2.1 --- a/MoinMoin/themes/foobar/static/css/stylus/main.styl	Thu Aug 16 20:52:40 2012 +0530
     2.2 +++ b/MoinMoin/themes/foobar/static/css/stylus/main.styl	Thu Aug 16 21:01:08 2012 +0530
     2.3 @@ -315,6 +315,41 @@
     2.4                  a
     2.5                      color link_color
     2.6  
     2.7 +// blog page
     2.8 +#moin-blog-header
     2.9 +    margin 1em 0 -1em 0
    2.10 +
    2.11 +#moin-blog-content
    2.12 +    padding 0 2em 0 0
    2.13 +    display table-cell
    2.14 +
    2.15 +#moin-blog-sidebar
    2.16 +    width 15em
    2.17 +    display table-cell
    2.18 +
    2.19 +.moin-blog-entry-info
    2.20 +    font-size 0.8em
    2.21 +    color footer_color
    2.22 +
    2.23 +.moin-blog-entry-bottominfo
    2.24 +    font-size 0.8em
    2.25 +    color footer_color
    2.26 +    padding 0em 1em
    2.27 +    border border_style
    2.28 +
    2.29 +ul.moin-blog-entry-tags
    2.30 +    list-style none
    2.31 +    display inline
    2.32 +    margin 0
    2.33 +    li
    2.34 +        display inline
    2.35 +        &:after
    2.36 +            content ","
    2.37 +
    2.38 +ul.moin-blog-entry-tags li:last-child
    2.39 +    &:after
    2.40 +        content ""
    2.41 +                    
    2.42  // index page
    2.43  .moin-clr
    2.44      clear both