-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
74 lines (65 loc) · 1.1 KB
/
index.css
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
body {
margin: 10px;
padding: 0 0 50px 0;
font-size: 16px;
line-height: 1.2em;
font-family: sans-serif;
text-align: justify;
}
a, a:hover, a:active, a:visited {
color: blue;
}
pre {
background-color: #ccc;
/*white-space: pre-wrap;*/
padding: 10px;
overflow-x: auto;
}
canvas {
width: 100%;
background: white;
}
img {
width: 100%;
}
.container {
margin-top: 20px;
height: calc(54vw);
border-radius: 3px;
box-shadow: 0 0 3px gray;
overflow: hidden;
max-height: 320px;
}
.container-legend {
margin-top: 5px;
}
.container, .container-legend {
width: 100%;
max-width: 568px;
}
.pagination {
display: flex;
flex-direction: row;
justify-content: space-between;
}
.pagination > * {
}
@media screen and (min-width: 568px) {
img {
width: auto;
margin: auto;
display: block;
}
.container {
margin: 20px auto 0 auto;
}
.container-legend {
margin: 5px auto;
}
}
@media screen and (min-width: 1000px) {
body {
margin: auto;
width: 960px;
}
}