Welcome to mirror list, hosted at ThFree Co, Russian Federation.

notice.html « shortcodes « layouts - github.com/zhaohuabing/hugo-theme-cleanwhite.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 86298ab44b29a26566d8d28897e53787c9cc1284 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{{ $_hugo_config := `{ "version": 1 }` }}
<style media="screen">
    /* notice block */
    div.notices {
        margin: 2rem 0;
        position: relative;
    }
    div.notices p {
        padding: 15px;
        white-space: pre-wrap;
        display: block;
        /*font-size: 1rem;*/
        margin-top: 0rem;
        margin-bottom: 0rem;
        color: #666;
    }
    div.notices p:first-child:before {
        position: absolute;
        top: 2px;
        color: #fff;
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        content: "\f06a";
        left: 10px;
    }
    div.notices p:first-child:after {
        position: absolute;
        top: 2px;
        color: #fff;
        left: 3rem;
    }
    div.notices.info p {
        border-top: 30px solid #F0B37E;
        background: #FFF2DB;
    }
    div.notices.info p:first-child:after {
        content: 'Info';
    }
    div.notices.warning p {
        border-top: 30px solid rgba(217, 83, 79, 0.8);
        background: #FAE2E2;
    }
    div.notices.warning p:first-child:after {
        content: 'Warning';
    }
    div.notices.note p {
        border-top: 30px solid #6AB0DE;
        background: #E7F2FA;
    }
    div.notices.note p:first-child:after {
        content: 'Note';
    }
    div.notices.tip p {
        border-top: 30px solid rgba(92, 184, 92, 0.8);
        background: #E6F9E6;
    }
    div.notices.tip p:first-child:after {
        content: 'Tip';
    }
</style>
<div class="notices {{ .Get 0 }}" {{ if len .Params | eq 2 }} id="{{ .Get 1 }}" {{ end }}>{{ .Inner }}</div>