xref: /template/writr/css/plugins/include.less (revision fc6855b4cfb61872a2306be9b21ca83b63d707b6)
1/* =Include Plugin
2----------------------------------------------- */
3
4.plugin_include_content {
5    padding-top: 0px;
6    padding-bottom: 0px;
7
8    .published{
9        font-weight:normal;
10        border: none;
11        border-image-width: 0;
12        opacity: 60%;
13        float: right;
14        -webkit-transition: all 0.25s ease-in-out;
15        -moz-transition: all 0.25s ease-in-out;
16        -ms-transition: all 0.25s ease-in-out;
17        -o-transition: all 0.25s ease-in-out;
18        transition: all 0.25s ease-in-out;
19    }
20    .published:hover{
21        opacity: 100%;
22    }
23    .published::before{
24        font-family: 'bootstrap-icons';
25        content: "\f214";
26        font-weight: normal;
27        font-size: 20px;
28        line-height: 20px;
29        padding-right: 6px;
30        vertical-align: text-top;
31    }
32    .author{
33        float: right;
34        margin-right: 8px;
35    }
36    .author::before{
37        font-family: 'bootstrap-icons';
38        content: "\f4e1";
39        font-size: 20px;
40        margin-right: 4px;
41        line-height: 20px;
42        vertical-align: text-top;
43    }
44    .comment::before{
45        font-family: 'bootstrap-icons';
46        content: "\f268";
47        font-size: 20px;
48        padding-right: 6px;
49        line-height: 20px;
50        vertical-align: text-top;
51    }
52    .linkback::before{
53        font-family: 'bootstrap-icons';
54        content: "\f470";
55        font-size: 20px;
56        padding-right: 4px;
57        line-height: 20px;
58        vertical-align: text-top;
59    }
60}
61
62p.include_readmore {
63    margin-bottom: 8px;
64}
65
66.plugin_include_content .comment a.wikilink1 {
67    text-decoration: none;
68}