-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
40 lines (38 loc) · 805 Bytes
/
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
.setting-container {
width: 50%;
text-align: center;
padding: 10px;
margin: 10px auto;
border-radius: 10px;
border: 1px solid #000000;
display: grid;
grid-template-columns: auto auto auto auto auto;
align-items: center;
justify-items: center;
}
.run-container {
width: 50%;
text-align: center;
padding: 10px;
margin: 10px auto;
border-radius: 10px;
border: 1px solid #000000;
display: grid;
grid-template-columns: auto auto auto;
}
.output-container {
width: 50%;
height: 300px;
display: block;
margin-left: auto;
margin-right: auto;
}
input[type="number"] {text-align: right;}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
input[type="number"] {
-moz-appearance: textfield;
}