-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
55 lines (45 loc) · 776 Bytes
/
main.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
html, body {
margin: 0;
padding: 0;
font-family: 'Times New Roman', Times, serif;
}
.nfa-table {
width: 300px;
height: 300px;
border: solid 1px black;
padding: 5px;
}
.nfa-table table {
border-collapse: collapse;
width: 100%;
height: 100%;
}
.nfa-table tr {
border: 1px solid black;
padding: 5px;
}
.table-container table {
border-collapse: collapse;
margin-left: auto;
margin-right: auto;
}
.table-container th, td {
border: 1px solid black;
padding: 5px;
}
/* new added property */
textarea {
resize: none;
}
button {
margin-top: 5px;
}
/* --------- new for NFA-to-RG ---------- */
.nfa-rg-left {
width: 30%;
float: left;
}
.nfa-rg-right {
width: 60%;
float: right;
}