Mercurial > libervia-web
diff server_css/blog.css @ 389:2d782349b88a
server_side: display blog comments when you click on a main item header or title
author | souliane <souliane@mailoo.org> |
---|---|
date | Tue, 25 Feb 2014 17:50:47 +0100 |
parents | ce5b33f499c5 |
children | a3d58514a4d0 |
line wrap: on
line diff
--- a/server_css/blog.css Tue Feb 25 11:31:11 2014 +0100 +++ b/server_css/blog.css Tue Feb 25 17:50:47 2014 +0100 @@ -16,8 +16,9 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ -.mblog_title { +.mblog_title, .mblog_title a { text-align: center; + text-decoration: none; font-size: x-large; font-weight: bold; margin-bottom: 40px; @@ -39,11 +40,28 @@ color: rgb(51, 51, 51); } -.mblog_timestamp { - display: block; +.mblog_comment { +} + +.mblog_header { font-size: small; border-bottom: 1px dashed LightGrey; color: gray; + display: table; + width: 100%; +} + +.mblog_metadata { + display: table-row; + width: 100%; +} + +.mblog_author { + display: table-cell; +} + +.mblog_timestamp { + display: table-cell; text-align: right; } @@ -52,10 +70,19 @@ padding-top: 5px; } -h1, h2, h3, h4, h5, h6 { +.item_link { + text-decoration: none; +} + +.mblog_entry h1, h2, h3, h4, h5, h6 { border-bottom: 1px solid rgb(170, 170, 170); } +.mblog_entry h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { + text-decoration: none; + color: rgb(51, 51, 51); +} + img { max-width: 100%; }