1// $Id$
2// Blogs
3
4// Remove borders and background colors from .card-related divs to modernize blog post appearance.
5// Themes can reinstate these totally or partially to match the theme style.
6
7.tiki_blogs .card.blogpost {
8	&,
9	& .card-header,
10	& .card-footer {
11	background-color: transparent;
12	border: none;
13	}
14}
15
16.blogheading {
17	display: block;
18	width: 100%;
19	clear: both;
20}
21
22.blogdesc {
23	display: block;
24	width: 40%;
25	padding: 8px;
26	margin-top: 8px;
27	margin-left: 6px;
28}
29
30.bloginfo {
31	display: block;
32}
33
34.blogactions {
35	float: right;
36}
37
38.postinfo {
39	margin-bottom: 20px;
40	margin-top: 10px;
41	div {
42		margin-top: 30%;
43	}
44}
45
46div.posthead {
47	text-align: left;
48	padding: 3px;
49}
50
51span.posthead {
52	display: block;
53}
54
55.postbody-title .panel-title { // Needs to be updated or removed
56	font-size: 1.4em;
57}
58
59//body.tiki_blogs .post_single {
60//	padding-bottom: 30px;
61//}
62
63.breadcrumb {
64	font-size: $breadcrumb-font-size;
65	font-style: $breadcrumb-font-style;
66//	display: $breadcrumb-display;
67}
68
69small.description {
70	display: block;
71}
72
73.description {
74	font-size: .95em;
75	font-style: italic;
76}
77
78// Related content
79.related_posts,
80.related_articles {
81	margin-top: 3em;
82}
83
84.related_posts h4,
85.related_articles h4 {
86	margin: 0;
87}
88