docs-operation/css/fix.css

32 lines
577 B
CSS
Raw Permalink Normal View History

2024-08-14 01:00:37 +00:00
/* flow_imgの中のimg要素に高さ指定を追加 */
.flow_img img {
2024-08-14 01:01:24 +00:00
height: 160mm;
2024-08-14 01:00:37 +00:00
margin: 0 auto;
2024-08-14 00:56:59 +00:00
}
2024-08-14 20:00:31 +00:00
/* スクショimg要素を中央揃え横並びで表示させる*/
.ss_img {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
margin: 0 auto;
width: 100%;
max-width: 100%;
padding: 0;
list-style: none;
text-align: center;
margin-top: 10px;
margin-bottom: 10px;
}
.ss_img img {
2024-08-14 20:52:31 +00:00
height: 100mm;
2024-08-14 20:00:31 +00:00
margin: 0 auto;
}
2024-08-29 19:32:55 +00:00
/* Page Break */
.page-break {
page-break-after: always;
}