-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathneardebug.css
78 lines (64 loc) · 1.06 KB
/
neardebug.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
html, body {
max-width: 1000px;
margin: 0 auto;
padding: 0;
}
header h2 {
text-align: center;
}
header {
border-bottom: 1px dotted;
}
kbd {
border: 2px solid;
border-radius: 5px;
padding: 0 2px;
}
#contract_form {
margin-top: 1em;
display: grid;
row-gap: 5px;
grid-template-columns: 50ex auto;
grid-column: 2;
}
#contract_form label {
font-weight: bold;
text-align: right;
padding-right: 1ex;
}
#execute {
width: 100%;
height: 3em;
grid-column-start: 1;
grid-column-end: 3;
}
#contract_form h3 {
width: 100%;
grid-column-start: 1;
grid-column-end: 3;
text-align: center;
}
input, textarea, select {
font-family: monospace;
}
.near_input, .gas_input {
display: flex;
}
.near_input span, .gas_input span {
white-space: nowrap;
margin-left: 1ex;
min-width: 10ex;
}
.near_input input, .gas_input input {
flex-grow: 1;
}
.near_input:after {
content: "Ⓝ";
}
.gas_input:after {
content: "Tgas";
}
/* Colors */
:root {
color-scheme: light dark;
}