File: site.css

package info (click to toggle)
pybtex 0.25.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,628 kB
  • sloc: python: 13,585; makefile: 181; sh: 39; javascript: 29
file content (55 lines) | stat: -rw-r--r-- 930 bytes parent folder | download | duplicates (4)
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
@import url(master.css);

h1 {
    font-size: 400%;
    font-weight: 700;
    margin-top: 0.1em;
    margin-bottom: 0.1em;
    border-bottom-style: solid;
    border-bottom-color: #884000;
    border-bottom-width: 0.1em;
}

p {
    text-align: left;
}

body {
    margin-bottom: 3em;
}

@media only screen and (min-width: 600px) {
    h1 {
        font-size: 800%;
    }

    .download-links {
        margin-bottom: 3ex;
        width: 100%;
        text-align: right;
    }

    .download-links ul {
        font-size: 0;
    }

    .download-links ul li {
        font-size: 1rem;
        font-family: sans-serif;
        list-style: none;
        display: inline;
    }

    .download-links ul li p {
        display: inline;
    }

    .download-links ul li:not(:last-child) {
        margin-right: 0.3em;
    }

    .download-links ul li:not(:first-child):before {
        margin-right: 0.3em;
        content: "|";
    }
}