| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- /* page {
- height: 97%;
- } */
- .body-content{
- width: 100%;
- height: 100%;
- display: flex;
- flex-direction: column;
- }
- .info_list_box{
- width: 100%;
- height: 100%;
- position: relative;
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .info_list {
- width: 98%;
- height: 98%;
- margin-top: 8px;
- margin-bottom: 8px;
- }
- .info_text_line_inline{
- width: 100%;
- display: flex;
- flex-direction: row;
- align-items: flex-start;
- color: black;
- }
- .info_text_line_inline_title{
- width: 50%;
- }
- .info_text_line_inline_content{
- width: 50%;
- text-align: left;
- color:#669999;
- font-size: small;
- }
- .info_text_line_center{
- text-align: center;
- }
- .datetime_font{
- color:#669999;
- }
|