blob: ff1dc84c02f9a2c09c3b52f84d4e04e3d270bee9 (
plain) (
blame)
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
|
html, body {
min-height: 100%;
width: 100%;
height: 100%;
padding: 0;
margin: 0;
}
body {
padding-bottom: 70px;
}
.wrapper {
display: table;
width: 100%;
height: 100%;
}
.content {
display: table-cell;
width: 100%;
height: 100%;
text-align: center;
vertical-align: middle;
}
pre {
margin: auto;
text-align: left;
width: 400px;
}
[v-cloak] {
display: none;
}
.hand {
cursor: pointer;
}
th {
vertical-align: middle !important;
}
.main {
margin-bottom: 40px;
}
footer {
position: fixed;
background-color: #efefef;
bottom: 0;
width: 100%;
color: #555;
font-size: 14px;
padding: 5px;
z-index: 13;
opacity: .5;
-webkit-transition: all .25s;
transition: all .25s;
}
footer:hover {
opacity: 1;
}
th {
overflow: hidden;
}
.entry-toolbar {
opacity: 0;
transition: opacity .25s;
}
tr:hover .entry-toolbar {
opacity: 1;
}
|