1figure.plugin_jquotes {
2    margin: 1em 0.25em;
3    padding: 0.5em .75em;
4    background-color: @ini_background_alt;
5    cursor: pointer;
6    color: @ini_text_alt;
7    border-radius: 0.5em;
8	font-size: 1em;
9	line-height: 1.5;
10}
11
12figure.plugin_jquotes > blockquote {
13    position: relative;
14    margin: 0;
15    padding: 0;
16    border: none;
17    border-radius: inherit;
18    background-color: @ini_background_alt;
19    font-size: 1em;
20}
21
22figure.plugin_jquotes > blockquote::before {
23    content: "\0201c";
24    position: absolute;
25    top: -0.75rem;
26    left: -0.75rem;
27    font-size: 3em;
28}
29
30figure.plugin_jquotes > blockquote::after {
31    content: "\0201d";
32    position: absolute;
33    bottom: -2.5rem;
34    right: -0.75rem;
35    font-size: 3em;
36}
37
38figure.plugin_jquotes > blockquote > p {
39    margin: 0 1em;
40    padding: 0;
41    text-align: left;
42}
43
44figure.plugin_jquotes > blockquote > p::first-letter {
45    font-size: 1.25em;
46}
47
48figure.plugin_jquotes > figcaption {
49    margin: 0.75em 1em 0 1em;
50    padding: 0;
51    font-style: italic;
52    text-align: right;
53}
54
55figure.plugin_jquotes > figcaption::before {
56    content: "\02014";
57}
58
59body.tpl_bootstrap3 figure.plugin_jquotes > blockquote::before {
60    top: -1.25rem;
61    left: -1.25rem;
62}
63
64body.tpl_bootstrap3 figure.plugin_jquotes > blockquote::after {
65    bottom: -4.5rem;
66    right: -1.25rem;
67}
68