comparison server_css/blog.css @ 10:c28a4840e1a8

server: microblog resource
author Goffi <goffi@goffi.org>
date Fri, 25 Mar 2011 00:32:58 +0100
parents
children 6efd189e8d78
comparison
equal deleted inserted replaced
9:c80b75bf2e91 10:c28a4840e1a8
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
20 .mblog_title {
21 text-align: center;
22 font-size: x-large;
23 font-weight: bold;
24 margin-bottom: 40px;
25 }
26
27 .mblog_content {
28 width: 60%;
29 text-align:center;
30
31 border: 1px solid LightGray;
32
33 border-bottom-width: 1px;
34 margin-left: auto;
35 margin-right: auto;
36 margin-bottom: 20px;
37 margin-top: 5px;
38 padding-left: 10px;
39 padding-right: 10px;
40 padding-top: 5px;
41 padding-bottom: 5px;
42
43 -moz-border-radius: 15px;
44 -webkit-border-radius: 15px;
45 border-radius: 15px;
46 }
47
48 .mblog_timestamp {
49 display: block;
50 font-size: small;
51 border-bottom: 1px dashed LightGrey;
52 color: gray;
53 }