-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
75 lines (60 loc) · 973 Bytes
/
styles.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
h1 {
text-align: center;
font-family: sans-serif;
}
.main {
display: table;
}
#processCell, #outputCell{
display: table-cell;
font-family: sans-serif;
line-height: 175%;
}
#processCell {
width: 25%;
padding: 15px;
}
#outputCell {
width: 75%;
padding: 15px;
}
textarea {
width: 270px;
height: 450px;
font-size: 12px;
}
button, select {
margin: 20px 10px 20px 0;
font-size: 16px;
}
th, td {
border: 1px solid black;
}
#debug {
font-weight: bold;
color: red;
}
.output {
display: table;
width: 100%;
border: 1px solid black;
margin-bottom: 8px;
padding-left: 5px;
}
.outputHead {
display: table;
width: 100%;
text-decoration: underline;
margin-left: 8px;
line-height: 100%;
}
.output1 {
display: table-cell;
width: 70%;
}
.output2,.output3 {
display: table-cell;
text-align: center;
padding: 0 5px 0 5px;
line-height:40px;
}