-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
81 lines (70 loc) · 1.15 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
body {
margin: 0;
font-size: 15px;
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
}
.jsme-editor {
height: 30vh;
display: flex;
}
.input,
.output {
overflow: auto;
width: 50%;
height: 100%;
box-sizing: border-box;
padding: 0 20px;
}
.input {
border: none;
border-right: 1px solid #ccc;
resize: none;
outline: none;
background-color: #f6f6f6;
padding: 20px;
border-radius: 10%;
}
code {
color: #f66;
}
/* Set additional styling options for the columns*/
/* .column {
float: left;
width: 20%;
} */
.button {
display: inline-block;
width: calc(50% - 4px);
margin: 0 auto;
border-radius: 10%;
}
/* Field set */
table{
border-spacing: 15px;
border-radius: 10%;
}
table, th, td {
border: 2px solid black;
padding: 5px;
border-radius: 10%;
}
fieldset {
display: table;
border-left: none;
border-right: none;
border-bottom: none;
}
fieldset legend {
font-size: larger;
font-weight: bold;
text-align: start;
}
form { display: table; }
form p {
display: table-row;
float: none;
}
form label {
display: table-cell;
width: 40%;
}