1// $Id$
2// For newsletter styling. Variables defined in tiki-variables.scss. A theme-specific newsletter.css file can be loaded with priority.
3@import "../../../vendor_bundled/vendor/twbs/bootstrap/scss/_functions.scss";
4@import "../../../vendor_bundled/vendor/twbs/bootstrap/scss/variables.scss";
5@import "../../../vendor_bundled/vendor/twbs/bootstrap/scss/mixins.scss";
6// $import "../../../vendor_bundled/vendor/twbs/bootstrap/less/panels.less";
7@import "_tiki-variables.scss";
8
9
10body {
11	background: $body-bg;
12	color : $body-color;
13	font-family: $font-family-base;
14	padding: 15px;
15}
16
17a,
18a:visited {
19	color: $link-color;
20	text-decoration: $link-hover-decoration;
21}
22
23a:hover {
24	color: $link-hover-color;
25	text-decoration: $link-hover-decoration;
26}
27
28h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
29	font-family: $headings-font-family;
30	font-weight: $headings-font-weight;
31	color: $headings-color
32}
33
34//
35// Panels (this section is a subset of vendor/twbs/bootstrap/less/panels.less)
36// --------------------------------------------------
37
38
39// Base class
40.card {
41	margin-bottom: $line-height-base;
42	background-color: $card-bg;
43	border: 1px solid transparent;
44	border-radius: $card-border-radius;
45	@include box-shadow(0 1px 1px rgba(0,0,0,.05));
46}
47
48// Panel contents
49.card-body {
50//	padding: $card-body-padding; Todo = find variable or method
51//	&:extend(.clearfix all); Todo
52}
53
54// Optional heading
55.card-header {
56//	padding: $card-header-padding; Todo = find variable or method
57	border-bottom: 1px solid transparent;
58//	.border-top-radius(($panel-border-radius - 1)); Todo
59}
60
61// Within heading, strip any `h*` tag of its default margins for spacing.
62.card-title {
63	margin-top: 0;
64	margin-bottom: 0;
65	font-size: ceil(($font-size-base * 1.125));
66	color: inherit;
67
68	> a,
69	> small,
70	> .small,
71	> small > a,
72	> .small > a {
73		color: inherit;
74	}
75}
76
77// Optional footer (stays gray in every modifier class)
78//.panel-footer {
79//	padding: $card-footer-padding; Todo - find variable or method
80//	background-color: $panel-footer-bg; Todo - find variable or method
81//	border-top: 1px solid $card-border-color; Todo - find variable or method
82//	.border-bottom-radius(($panel-border-radius - 1)); Todo
83//}
84
85
86