-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
98 lines (81 loc) · 1.37 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
body {
padding: 0;
margin: 0;
}
#formMain {
margin: 0.5rem;
}
div.divGroup {
margin: 0 0 1rem 0;
}
div.divModal {
display: none;
height: 100vh;
position: fixed;
top: 0;
width: 100%;
}
div.divModalBG {
background: rgba(0,0,0,0.5);
height: 100vh;
position: absolute;
width: 100%;
}
div.divModalFrame {
background: #fff;
left: 50%;
padding: 0.5rem 1rem 1rem 1rem;
position: absolute;
top: 50%;
transform: translate(-50%,-50%);
}
div.divModalHeader {
vertical-align: middle;
position: relative;
padding-bottom: 0.2rem;
}
div.divModalCaption {
float: left;
font-weight: bold;
}
div.divCloseModal {
width: 100%;
text-align: right;
}
div.divModalInnerFrame {
position: relative;
width: 100%;
}
div.innerframe_middle {
display: table-cell;
vertical-align: middle;
}
table.CodeTable {
border-collapse: collapse;
border-spacing: 0px;
border: 1px solid black;
}
table.CodeTable td {
border: 1px solid black;
vertical-align: middle;
}
td.char {
width: 2rem;
height: 1rem;
text-align: center;
}
.msgErrorMessage {
color: coral;
}
button.btnFontFile {
width: 10rem;
height: 2rem;
font-weight:bold;
}
div.divFontFileButton {
margin-bottom: 0.2rem;
}
div.divFontFileDesc {
margin-left: 0.5rem;
margin-bottom: 1rem;
}