summaryrefslogtreecommitdiff
path: root/comic/assets/css/comic.css
blob: 9449cab0005f66b68f23480282a36f2c896de2f2 (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
body {
    background-color: #cdb7f6;
}

main, header, footer {
    display: flex;
    flex-flow: column;
    align-items: center;
    margin: auto;
    border-radius: 0.5rem;
    background-color: white;
}

@media (min-width: 768px) {
    main, header, footer {
        padding: 0 5rem 0 5rem !important;
    }
}

main, footer {
    margin-top: 0.5rem;
}

footer {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;;
}

hr {
    width: 30%;
    color: #e9d3ff;
}

img.banner {
    width: 100%;
}

img.comic {
    width: 100%;
    border: 0.1rem solid black;
}

p {
    text-align: center;
    margin: 0.2rem;
}

a {
    color: #801396;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

p.description {
    margin-top: 2rem;
    margin-bottom: 2rem;
}