-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
126 lines (126 loc) · 1.91 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
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
* {
--font: #a1a1a1;
--bg: #383838;
--link: #00adff;
box-sizing: border-box;
}
body {
margin: 0;
padding: 0;
background: var(--bg);
color: var(--font);
text-align: center;
}
#main {
overflow: auto;
padding: 5px;
position: fixed;
top: 0;
left: 0;
bottom: 150px;
width: 100%;
}
form {
display: inline-block;
text-align: left;
}
a {
color: var(--link);
text-decoration: none;
cursor: pointer;
}
a:hover {
text-decoration: underline;
}
h1 {
margin: 0;
margin-bottom: 0.75em;
}
tbody td {
text-align: left;
}
td {
font-weight: normal;
}
tfoot td {
text-align: center;
}
table {
border-spacing: 0;
}
tr {
border: none;
outline: none;
}
table, td {
border: 1px solid var(--font);
outline: none;
}
td {
padding: 2px 5px;
vertical-align: top;
}
input[type=text], input[type=number], textarea {
outline: 1px groove var(--font) !important;
box-shadow: none !important;
border: none !important;
color: #000;
background: #fff;
width: 100%;
padding: 1px 2px;
}
input {
display: inline-block;
margin: 0;
font-size: 12px;
text-align: left;
font-weight: normal;
}
input[type=submit]{
text-align: center;
cursor: pointer;
}
#log {
position: fixed;
bottom: 0;
left: 0;
height: 150px;
width: 100%;
text-align: left;
padding: 2px 5px;
background: #2c2c2c;
border-top: 2px solid var(--font);
overflow: auto;
}
#log p {
margin: 0;
padding: 0;
}
::-webkit-scrollbar {
width: 10px;
height: 10px;
}
::-webkit-scrollbar-button {
display: none;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: #888;
}
::-webkit-scrollbar-thumb:hover {
background: #555;
}
* {
scrollbar-width: thin; /* firefox */
}
.action {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-gap: 5px;
margin-bottom: 3px;
}
.action:last-of-type {
margin: 0;
}