-
Notifications
You must be signed in to change notification settings - Fork 27
/
styles.css
108 lines (90 loc) · 1.22 KB
/
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
* {
margin: 0px;
padding: 0px;
list-style: none;
/* border: 1px solid blue; */
}
body,
.mainContent {
position: absolute;
left: 2px;
right: 2px;
top: 2px;
bottom: 2px;
}
.mainContent {
padding: 2px;
flex-direction: column;
flex: 1;
}
.divContainer {
display: flex;
overflow: auto;
padding: 2px;
border: 1px solid #999999;
}
.mainContainer{
flex: 1;
margin-top: 2px;
}
.info{
background: #FF8040;
color: #ffffff;
}
.leftContainer{
flex: 1;
flex-direction: column;
}
.rightContainer{
flex: 1;
margin-left: 2px;
flex-direction: column
}
.jsonContainer{
flex: 1
}
.origJsonContainer{
flex: 1
}
.inputsContainer{
margin-top: 2px;
flex-direction: column;
}
.inputTitle{
width: 150px;
}
.textInputContainer{
height: 40px;
}
.inputContainer{
flex: 1;
flex-direction: row;
}
input[type='text']{
flex: 1;
}
.objcHeader{
flex: 2;
}
.objcImpl{
flex: 3;
margin-top: 2px;
}
textarea{
resize: none;
flex: 1;
}
p{
align-self: center
}
#genBtn{
width: 60px;
}
.copyBtnContaner{
justify-content: center;
align-items: center;
}
.copyBtn{
width: 100%;
height: 40px;
}