comparison server_css/blog.css @ 228:6efd189e8d78

server_side: put the blog entry content in its own span + CSS customization
author souliane <souliane@mailoo.org>
date Tue, 08 Oct 2013 13:35:29 +0200
parents c28a4840e1a8
children 52b1afd7ac3f
comparison
equal deleted inserted replaced
227:67e24c342e7f 228:6efd189e8d78
14 14
15 You should have received a copy of the GNU Affero General Public License 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/>. 16 along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */ 17 */
18 18
19
20 .mblog_title { 19 .mblog_title {
21 text-align: center; 20 text-align: center;
22 font-size: x-large; 21 font-size: x-large;
23 font-weight: bold; 22 font-weight: bold;
24 margin-bottom: 40px; 23 margin-bottom: 40px;
24 font-family: FreeSans, Liberation Sans, Arial, sans-serif;
25 color: rgb(51, 51, 51);
25 } 26 }
26 27
27 .mblog_content { 28 .mblog_entry {
28 width: 60%; 29 width: 60%;
29 text-align:center; 30 text-align: justify;
30
31 border: 1px solid LightGray; 31 border: 1px solid LightGray;
32 32 margin: 5px auto 20px auto;
33 border-bottom-width: 1px; 33 padding: 5px 10px;
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; 34 -moz-border-radius: 15px;
44 -webkit-border-radius: 15px; 35 -webkit-border-radius: 15px;
45 border-radius: 15px; 36 border-radius: 15px;
37 box-shadow: 0px 0px 0.5em rgb(153, 153, 153);
38 font-family: FreeSans, Liberation Sans, Arial, sans-serif;
39 color: rgb(51, 51, 51);
46 } 40 }
47 41
48 .mblog_timestamp { 42 .mblog_timestamp {
49 display: block; 43 display: block;
50 font-size: small; 44 font-size: small;
51 border-bottom: 1px dashed LightGrey; 45 border-bottom: 1px dashed LightGrey;
52 color: gray; 46 color: gray;
47 text-align: right;
53 } 48 }
49
50 .mblog_content {
51 display: block;
52 padding-top: 5px;
53 }