blob: 7335684f279cb4f82ec5cac90fc00d51bc606393 (
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
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;
}
ul.navigation {
margin-top: 0;
padding: 0;
display: inline-flex;
max-width: 100%;
}
ul.navigation li {
display: inline;
text-align: center;
height: 1.5rem;
line-height: 1.5rem;
}
ul.navigation li.issue_number {
width: 2rem;
}
ul.navigation li.nav_button {
width: 4rem;
flex-shrink: 1;
margin-left: 0.1rem;
margin-right: 0.1rem;
border-radius: 0.5rem;
background: #a665c6;
border: 0.1rem solid white;
}
ul.navigation li.nav_button:hover {
background: white;
border: 0.1rem solid #a665c6;
}
ul.navigation li span {
display: inline-block;
}
ul.navigation li a {
display: inline-block;
width: 100%;
color: white;
}
ul.navigation li:hover a {
color: #a665c6;
text-decoration: none;
}
.icon-text {
display: flex;
flex-flow: row;
align-items: center;
margin-top: 0.2rem;
margin-bottom: 0.2rem;
}
.icon-text > :first-child {
margin-right: 0.3rem;
}
.svg-icon {
max-width: 1.5rem;
max-height: 1.5rem;
border: none;
width: 1.5rem;
height: 1.5rem;
}
img.banner {
width: 100%;
}
img.comic {
width: 100%;
border: 0.1rem solid black;
}
p {
font-size: 1rem;
margin: 0.2rem;
text-align: center;
}
a {
color: #801396;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
p.description {
margin-top: 2rem;
margin-bottom: 2rem;
}
|