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

layout.scss « custom « sass « static - github.com/the2ne/hugo-frais.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 06a3c5a577cb62f65206912c3881d798ac4839eb (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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
////
// Layout
////

html {
    background-color: $white;
}


// header
.header-wrapper {
    background-color: $neutral;
    display: table;
    padding: .5em 1.5em;
    width: 100%;

    a {
        text-decoration: none;
    }

    .headline,
    .menu {
        display: table-cell;
        vertical-align: middle;
    }

    .headline {
        text-align: left;
    }

    .menu {
        text-align: right;
    }
}

// Menu
.menu__items {
    list-style-type: none;
    margin: 0;
    padding: 0;

    .item {
        display: inline-block;
    }

    .item + .item {
        margin-left: .5em;
    }

    .item + .item::before {
        color: $white;
        content:"|";
        display: inline-block;
        margin-right: .5em;
    }
}

// Content
.content {
    margin: 0 auto;
    max-width: 40em;
    padding: 0 1.5em;

    .post--preview + .post--preview {
        margin-top: 3em;
    }
}

// Post preview
.post--preview {
    .post__title {
        margin-bottom: .25em;
    }
}

// Footer
.legal {
    color: $shadow;
    margin-top: 3em;
    text-align: center;
}

// Post meta
.post__meta {
    color: $light;
    display: table;
    width: 100%;

    a { color: $light; }
    a:hover { color: $base; }
    a:focus { color: $contrast; }
    a:active { color: $shadow; }

    [class^=post__meta__] {
        display: table-cell;
        vertical-align: middle;
        margin: 0;
        padding-left: 0;
        list-style-type: none;

    > * {
        display: inline-block;
    }

    li + li {
        margin-left: .25em;
    }

    li + li::before {
        color: $light;
        content:"•";
        display: inline-block;
        margin-right: .5em;
    }
    }

    .post__meta__infos {
        text-align: left;
    }

    .post__meta__tags {
        text-align: right;
    }
}