-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
115 lines (94 loc) · 1.8 KB
/
style.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
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
body {
font-family: 'Inconsolata', ;
text-align: center;
background: url(/img/debut_dark.png);
color: rgba(255, 255, 255, 0.59);
}
a {
color: inherit;
text-decoration: none;
cursor: pointer;
}
a:hover {
color: rgba(255, 255, 255, 1);
}
a:visited {
color: inherit;
text-decoration: none;
}
#wrapper {
display: inline-block;
background: rgba(0, 0, 0, 0.31);
margin: 0 auto;
padding: 10px 17px;
-webkit-box-shadow: 2px 2px 3px -1px rgba(0,0,0,0.35);
transition: all .3s ease .15s;
}
.title {
display: inline-block;
font-size: 64px;
}
thead {
background-color: rgba(140, 140, 140, 0.11);
}
td, th {
padding: 10px;
overflow: hidden;
white-space: nowrap;
transition: max-width 0.75s;
transition-timing-function: cubic-bezier(0.65, 0.24, 0.28, 0.77);
}
th {
cursor:pointer;
}
tr td:first-child + td + td {
text-align: right;
}
tr td:first-child + td, tr td:first-child + td + td,
tr th:first-child + th, tr th:first-child + th + th {
max-width: 80px;
}
tr td:first-child + td:hover, tr td:first-child + td + td:hover,
tr th:first-child + th:hover, tr th:first-child + th + th:hover {
max-width: 300px;
}
tr.off {
color: rgba(140, 140, 140, 0.3);
}
tr.on {
}
table {
margin-top: 30px;
margin-left: auto;
margin-right: auto;
border-spacing: 0;
}
.copiable {
cursor: pointer;
background: none!important;
border: none;
padding: 0!important;
font: inherit;
color: inherit;
transition: all 0.6s cubic-bezier(0,0,0,1);
}
.copiable:hover, .copiable:focus, .copiable:visited {
border:none;
outline:none;
}
.footer {
color: rgba(140, 140, 140, 0.3);
font-size: 8pt;
padding: 10px;
}
.copiable:active {
color: rgba(1, 255, 46, 0.61);
}
.latest {
max-width: 200px;
display: inline;
position: absolute;
margin-left: 30px;
font-size: 10pt;
color: rgba(140, 140, 140, 0.3);
}