質問編集履歴

1

情報の追加

2021/02/03 09:40

投稿

ty_tech
ty_tech

スコア1

test CHANGED
File without changes
test CHANGED
@@ -156,6 +156,140 @@
156
156
 
157
157
 
158
158
 
159
+ # 追記①
160
+
161
+ ###### SCSSの記述
162
+
163
+ ```
164
+
165
+
166
+
167
+ .held_tabs{
168
+
169
+ width:80%;
170
+
171
+ margin:10px auto;
172
+
173
+ position:relative;
174
+
175
+ }
176
+
177
+ .tab-buttons span{
178
+
179
+ font:400 14px 'open sans',sans-serif;
180
+
181
+ color:#333;
182
+
183
+ background:#eee;
184
+
185
+ cursor:pointer;
186
+
187
+ border-bottom:2px solid #ddd;
188
+
189
+ display:block;
190
+
191
+ width:33.3%;
192
+
193
+ float:left;
194
+
195
+ text-align:center;
196
+
197
+ height:40px;
198
+
199
+ line-height:40px;
200
+
201
+ }
202
+
203
+ .tab-content{
204
+
205
+ text-align: center;
206
+
207
+ width:100%;
208
+
209
+ border-bottom:3px solid #ddd;
210
+
211
+ padding:15px;
212
+
213
+ background:#eee;
214
+
215
+ display:inline-block;
216
+
217
+ font:400 13px 'open sans',sans-serif;
218
+
219
+ color:#333;
220
+
221
+ }
222
+
223
+ #display_mark{
224
+
225
+ width:33.3%;
226
+
227
+ height:2px;
228
+
229
+ background:#333;
230
+
231
+ display:block;
232
+
233
+ position:absolute;
234
+
235
+ top:40px;
236
+
237
+ transition: all .3s ease-in;
238
+
239
+ -o-transition: all .3s ease-in;
240
+
241
+ -webkit-transition: all .3s ease-in;
242
+
243
+ -moz-transition: all .3s ease-in;
244
+
245
+ }
246
+
247
+ #display_mark.in_held_tab{
248
+
249
+ left:0;
250
+
251
+ transition: all .3s ease-in;
252
+
253
+ -o-transition: all .3s ease-in;
254
+
255
+ -webkit-transition: all .3s ease-in;
256
+
257
+ -moz-transition: all .3s ease-in;
258
+
259
+ }
260
+
261
+ #display_mark.before_held{
262
+
263
+ left:33.3%;
264
+
265
+ transition: all .3s ease-in;
266
+
267
+ -o-transition: all .3s ease-in;
268
+
269
+ -webkit-transition: all .3s ease-in;
270
+
271
+ -moz-transition: all .3s ease-in;
272
+
273
+ }
274
+
275
+ #display_mark.after_held{
276
+
277
+ left:66.6%;
278
+
279
+ transition: all .3s ease-in;
280
+
281
+ -o-transition: all .3s ease-in;
282
+
283
+ -webkit-transition: all .3s ease-in;
284
+
285
+ -moz-transition: all .3s ease-in;
286
+
287
+ }
288
+
289
+ ```
290
+
291
+
292
+
159
293
 
160
294
 
161
295
  ### 行った事