-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtableGen.css
More file actions
97 lines (82 loc) · 1.77 KB
/
tableGen.css
File metadata and controls
97 lines (82 loc) · 1.77 KB
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
.ctrl {
max-width: 1024px;
margin: auto;
position: relative;
}
.ctrl > div {
max-width: 49%;
display: inline-block;
width: 100%;
box-sizing: border-box;
padding: 15px;
vertical-align: top;
}
.formCtrl {
margin: 15px 0;
}
.formCtrl > label {
max-width: 100px;
display: inline-block;
width: 100%;
}
.formCtrl input, .formCtrl select {
max-width: 250px;
width: 100%;
}
.tableGen > div div {
display: inline-block;
box-sizing: border-box;
padding: 1px;
border: 1px solid;
width: 25px;
text-align: center;
}
.tableGen {
border: 1px solid;
width: auto;
display: inline-block;
}
.tableGen > div div.active {
background-color: #337ab7;
}
.ctrl.tableResult table {
width: 100%;
}
.ctrl.tableResult table th textarea {
background-color: #ccc;
}
.ctrl.tableResult table td {
text-align: center;
}
.ctrl.tableResult table textarea {
width: 97%;
height: 97%;
}
textarea.divResult {
border: 1px solid;
box-sizing: border-box;
padding: 10px;
box-shadow: 0 0 10px #000 inset;
width: 100%;
clear: both;
display: block;
max-width: 100%;
min-height: 500px;
}
.alert {
text-align: center;
position: fixed;
top: 0;
width: 100%;
z-index: 1;
box-shadow: 0 0 10px #000;
}
.copyBtn {
position: absolute;
right: -1px;
top: -1px;
z-index: 1;
}
.ctrl.divResulCtrl {
margin-bottom: 50px;
}