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

single.css « css « assets - github.com/danielkvist/hugo-piercer-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1b23bd75e72477b0986639a3258d7d547d1fc827 (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
/* HEADER */
.single__header {
    align-items: center;
    display: flex;
    flex-direction: column;
    padding: 3.75rem 1.75rem; 
    justify-content: center;
}

.single__header > h1 {
    font-size: var(--h3);
    margin-bottom: 1.45rem;
}

.single__header > h2 {
    font-size: var(--p);
    text-align: center;
}

/* CONTENT */
.single__content {
    padding: 0.75rem 1.45rem;
    min-height: 100vh;
}

.single__content a {
    border-bottom: 3px solid var(--yellow);
}

.single__content a:hover {
    border-bottom: 3px solid var(--pink);
}

.single__content a:visited {
    border-bottom: 3px solid var(--purple);
}

.single__content > h1 {
    font-size: var(--h3);
}

.single__content > h2 {
    font-size: var(--p);
}

.single__content > h1,
.single__content > h2 {
    margin-bottom: 0.75rem;
    margin-top: 2.75rem;
}

/* FOOTER */
.single__footer {
    margin-bottom: 27vh;
}

.single__footer .tags {
    padding: 0.75rem 1.45rem;
    justify-content: center;
}