-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
104 lines (93 loc) · 1.61 KB
/
main.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
@import url('https://fonts.googleapis.com/css2?family=Sarabun&display=swap');
body {
font-family: Sarabun, Arial, sans-serif;
font-size: 14px;
height: 100%;
}
th {
position: -webkit-sticky;
position: sticky;
top: 0;
z-index: 2;
}
p {
margin: 10px 0;
}
textarea {
resize: none;
}
button {
font-size: 16px;
margin-top: 10px;
}
#query-editor, #query-result {
width: 49%;
height: 150px;
}
#query-copy {
margin-left: 7px;
}
#result-copy {
position: absolute;
left: 49.5%;
}
#btt {
position: fixed;
bottom: 20px;
right: 20px;
font-size: 18px;
font-weight: bold;
opacity: .6;
animation-name: bttOut;
animation-duration: .7s;
}
@keyframes bttOut {
from { opacity: 1; }
to { opacity: .6; }
}
@keyframes bttHover {
from { opacity: .6; }
to { opacity: 1; }
}
#btt:hover {
opacity: 1;
animation-name: bttHover;
animation-duration: .7s;
}
#data-section {
margin-top: 20px;
padding-bottom: 65px;
}
#data-table {
width: 100%;
}
#data-table th {
background: #444;
color: #ddd;
font-size: 14px;
}
#data-table tbody tr:nth-child(even) {
background: #eee;
}
#data-table td {
padding: 10px 8px;
font-size: 13px;
text-align: left;
vertical-align: top;
}
#data-table p {
margin: 0;
line-height: 1.8em;
text-indent: 3em;
}
#data-table p+p {
margin-top: 8px;
}
#data-table ul {
margin: 0 0 0 1em;
padding: 0;
}
#data-table li+li {
margin-top: 10px;
padding: 0;
}