-
Notifications
You must be signed in to change notification settings - Fork 0
/
invoice.css
218 lines (188 loc) · 3.77 KB
/
invoice.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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
#sample {
display: inline-block;
background-color: red;
width: 6.5em;
height: -1.5em;
left: 1em;
top: 1em;
}
.modal {
display: block;
width: 600px;
max-width: 100%;
height: 300px;
position: fixed;
z-index: 100;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
/* margin: -200px 0 0 -200px; */
background: white;
box-shadow: 0 0 60px 10px rgba(0, 0, 0, 0.9);
}
.closed {
display: none;
}
.modal-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 50;
background: rgba(0, 0, 0, 0.6);
}
.modal-guts {
position: absolute;
top: 0;
left: 0;
width: 100%;
overflow: auto;
padding: 20px 50px 20px 20px;
}
.modal .close-button {
position: absolute;
z-index: 1;
top: 10px;
right: 20px;
border: 0;
background: black;
color: white;
padding: 5px 10px;
font-size: 1.3rem;
}
.open-button {
border: 0;
background: lightgreen;
color: white;
padding: 10px 20px;
border-radius: 10px;
font-size: 21px;
}
.progress-bar {
width: 100%;
height: 20px;
border: 1px solid #ccc;
}
.progress {
height: 100%;
background-color: #ff0000;
animation: progress-animation 2s linear infinite;
}
@keyframes progress-animation {
0% {
width: 0%;
}
50% {
width: 50%;
}
100% {
width: 100%;
}
}
#progressBar::-webkit-progress-value {
background-color: red;
border-radius: 10px;
/* 赤 */
}
/* プログレスバーのスタイル */
.progress-bar {
width: 100%; /* プログレスバーの幅 */
height: 20px; /* プログレスバーの高さ */
background-color: #000000; /* プログレスバーの背景色 */
border-radius: 10px; /* 丸い角 */
}
/* プログレスバーの進捗部分のスタイル */
.progress {
width: 50%; /* 進捗部分の幅 */
height: 100%; /* プログレスバーの高さと一致 */
background-color: white; /* 進捗部分の背景色 */
border-radius: 8px; /* 丸い角 */
}
#progressbar {
width: 100%;
height: 10px;
background-color: #ddd;
transition: width 0.5s ease-in-out;
}
.line-spacing {
margin-bottom: 10px;
}
.my-class {
line-height: 4em;
}
.div {
margin-top: 10px;
padding: 20px;
background-color: #000000;
}
#image {
width: 500px;
height: 500px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.copyright {
position: center;
border: solid 2px red;
display: inline-block;
width: 22em;
}
.copyright1 {
position: center;
border: solid 2px red;
display: inline-block;
width: 22.5em;
left: 10em;
}
table {
font-size: 0.9em; /* テーブルの文字サイズを0.415emに変更 */
width: 40%; /* テーブルの幅を60%に変更 */
height: 60%;
}
.menu li {
white-space: nowrap; /* テキストを折り返さないようにする */
font-size: 0.853em;
display: inline-block;
margin-right: 5px; /* メニュー項目間の右側のマージンを10pxに指定 */
}
.menu li:last-child {
margin-right: 0; /* 最後のメニュー項目には右側のマージンを適用しない */
}
.menu {
width: 100%;
background-color: #2E8B57;
overflow: hidden;
}
.menu ul {
display: table-row;
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
height: 70px;
background-color: #2e8b57;
}
ul {
margin: 0; /* リストの余白を削除する */
list-style: none;
display: flex;
}
li {
margin-right: 20px
}
a {
display: block;
text-decoration: none;
color: white;
margin-right: 20px;
text-decoration: none;
}
nav {
padding-top: 5px;
box-sizing: border-box;
}