-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
124 lines (95 loc) · 1.74 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
body {
margin: 0px;
padding: 0px;
overflow: hidden;
font-family: Arial, Helvetica, sans-serif;
}
canvas {
position: absolute;
left: 0%;
top: 0%;
z-index: 0;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
input[type="number"] {
-moz-appearance: textfield;
}
/* ---------------------------------------- */
panel {
position: absolute;
display: none;
flex-direction: column;
align-items: center;
justify-content: top;
height: 60%;
max-width: 500px;
width: 30%;
border: 2px solid black;
border-radius: 24px;
background-color: whitesmoke;
z-index: 1;
}
panel_title {
display: flex;
align-items: center;
justify-content: center;
text-align: center;
height: 10%;
}
panel_box {
display: flex;
align-items: center;
justify-content: center;
border-top: 2px solid black;
width: 95%;
}
panel_multi_box {
display: flex;
flex-direction: column;
justify-content: space-evenly;
border-top: 2px solid black;
width: 95%;
height: 20%;
flex-direction: column;
justify-content: space-evenly;
}
panel_box_sub_line {
display: flex;
align-items: center;
justify-content: center;
max-height: 20%;
width: 100%;
}
.small_sub_line {
height: 15%;
width: 100%;
}
.panel_label {
width: 80%;
}
.panel_input_box {
width: 20%;
text-align: right;
}
.panel_input_pos {
width: 8%;
margin-left: 1%;
text-align: center;
}
.panel_input_small {
width: 8%;
text-align: center;
}
.panel_button {
width: 10%;
}
.progress_bar_box {
position: absolute;
top: 8px;
right: 8px;
z-index: 2;
}