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

base.css « css « assets - github.com/danielkvist/hugo-piercer-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 921bc43092c99ffcbdf4fea3f4040ff927b1711e (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
a {
    color: var(--foreground);
}

a:hover {
    color: var(--pink);
}

body {
    background-color: var(--background);
    color: var(--text);
    font-size: var(--base);
}

blockquote {
    color: var(--background);
    background-color: var(--foreground);
    padding: 0.75rem 1.45rem;
}

code {
    font-size: var(--text);
}

h1 {
    font-size: var(--h1);
}

h2 {
    font-size: var(--h2);
}

h3 {
    font-size: var(--h3);
}

h4 {
    font-size: var(--h4);
}

h3,
h4 {
    margin-bottom: 0.75rem;
    margin-top: 0.75rem;
}

hr {
    background-color: var(--separator);
    border: none;
    height: 5px;
    width: 50%;
}

img {
    height: auto;
    width: 100;
}

input {
    background-color: var(--foreground);
    border: none;
    color: var(--background);
    font-size: var(--text);
    margin-top: 1.25rem;
    padding: 0.75rem 1.45rem;
}

input:required {
    outline-color: var(--red);
}

label {
    display: none;
    visibility: hidden;
}

mark {
    background-color: var(--yellow);
}

pre {
    font-size: var(--p);
    padding: 0.75rem 1.45rem;
}

svg {
    height: auto;
    width: 100%;
}