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

single.css « css « static - github.com/queensferryme/hugo-theme-texify.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0110818d18c493056f7aa2136321668313cdb6fb (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
#main > h1 {
    text-align: center;
}

#main > .content {
    padding-top: 1rem;
}

#main > .warning {
    background-color: tomato;
    color: white;
    font-size: 1.1rem;
    padding: 1rem 0;
    text-align: center;
}

#main .toc {
    background-color: #EEEEEE;
    border: black 1px dashed;
    display: inline-block;
    margin: 1rem;
    padding: .5rem 1rem;
}

#main .toc a:hover {
    text-decoration: underline;
}

#main .toc li > ul {
    margin-left: 1.5rem;
}

#main .toc ul {
    list-style: none;
}

#main :target {
    background-color: azure;
}