Mercurial > libervia-web
annotate server_css/blog.css @ 256:0e7f3944bd27
browser_side: added contact group manager based on ListManager
author | souliane <souliane@mailoo.org> |
---|---|
date | Sat, 09 Nov 2013 09:39:45 +0100 |
parents | 6efd189e8d78 |
children | 52b1afd7ac3f |
rev | line source |
---|---|
10 | 1 /* |
2 Libervia: a Salut à Toi frontend | |
3 Copyright (C) 2011 Jérôme Poisson (goffi@goffi.org) | |
4 | |
5 This program is free software: you can redistribute it and/or modify | |
6 it under the terms of the GNU Affero General Public License as published by | |
7 the Free Software Foundation, either version 3 of the License, or | |
8 (at your option) any later version. | |
9 | |
10 This program is distributed in the hope that it will be useful, | |
11 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 GNU Affero General Public License for more details. | |
14 | |
15 You should have received a copy of the GNU Affero General Public License | |
16 along with this program. If not, see <http://www.gnu.org/licenses/>. | |
17 */ | |
18 | |
19 .mblog_title { | |
20 text-align: center; | |
21 font-size: x-large; | |
22 font-weight: bold; | |
23 margin-bottom: 40px; | |
228
6efd189e8d78
server_side: put the blog entry content in its own span + CSS customization
souliane <souliane@mailoo.org>
parents:
10
diff
changeset
|
24 font-family: FreeSans, Liberation Sans, Arial, sans-serif; |
6efd189e8d78
server_side: put the blog entry content in its own span + CSS customization
souliane <souliane@mailoo.org>
parents:
10
diff
changeset
|
25 color: rgb(51, 51, 51); |
10 | 26 } |
27 | |
228
6efd189e8d78
server_side: put the blog entry content in its own span + CSS customization
souliane <souliane@mailoo.org>
parents:
10
diff
changeset
|
28 .mblog_entry { |
10 | 29 width: 60%; |
228
6efd189e8d78
server_side: put the blog entry content in its own span + CSS customization
souliane <souliane@mailoo.org>
parents:
10
diff
changeset
|
30 text-align: justify; |
10 | 31 border: 1px solid LightGray; |
228
6efd189e8d78
server_side: put the blog entry content in its own span + CSS customization
souliane <souliane@mailoo.org>
parents:
10
diff
changeset
|
32 margin: 5px auto 20px auto; |
6efd189e8d78
server_side: put the blog entry content in its own span + CSS customization
souliane <souliane@mailoo.org>
parents:
10
diff
changeset
|
33 padding: 5px 10px; |
10 | 34 -moz-border-radius: 15px; |
35 -webkit-border-radius: 15px; | |
36 border-radius: 15px; | |
228
6efd189e8d78
server_side: put the blog entry content in its own span + CSS customization
souliane <souliane@mailoo.org>
parents:
10
diff
changeset
|
37 box-shadow: 0px 0px 0.5em rgb(153, 153, 153); |
6efd189e8d78
server_side: put the blog entry content in its own span + CSS customization
souliane <souliane@mailoo.org>
parents:
10
diff
changeset
|
38 font-family: FreeSans, Liberation Sans, Arial, sans-serif; |
6efd189e8d78
server_side: put the blog entry content in its own span + CSS customization
souliane <souliane@mailoo.org>
parents:
10
diff
changeset
|
39 color: rgb(51, 51, 51); |
10 | 40 } |
41 | |
42 .mblog_timestamp { | |
43 display: block; | |
44 font-size: small; | |
45 border-bottom: 1px dashed LightGrey; | |
46 color: gray; | |
228
6efd189e8d78
server_side: put the blog entry content in its own span + CSS customization
souliane <souliane@mailoo.org>
parents:
10
diff
changeset
|
47 text-align: right; |
10 | 48 } |
228
6efd189e8d78
server_side: put the blog entry content in its own span + CSS customization
souliane <souliane@mailoo.org>
parents:
10
diff
changeset
|
49 |
6efd189e8d78
server_side: put the blog entry content in its own span + CSS customization
souliane <souliane@mailoo.org>
parents:
10
diff
changeset
|
50 .mblog_content { |
6efd189e8d78
server_side: put the blog entry content in its own span + CSS customization
souliane <souliane@mailoo.org>
parents:
10
diff
changeset
|
51 display: block; |
6efd189e8d78
server_side: put the blog entry content in its own span + CSS customization
souliane <souliane@mailoo.org>
parents:
10
diff
changeset
|
52 padding-top: 5px; |
6efd189e8d78
server_side: put the blog entry content in its own span + CSS customization
souliane <souliane@mailoo.org>
parents:
10
diff
changeset
|
53 } |