160 lines
2.7 KiB
CSS
Raw Normal View History

2024-10-11 17:17:57 +09:00
:root{
--ButtonWidth:45%;
--ButtonHeight:45px;
}
#save {
right: 0;
position: absolute;
width: var(--ButtonWidth);
height: var(--ButtonHeight);
}
.layer > * {
2024-10-23 17:06:27 +09:00
/*height: fit-content;*/
}
/*input {*/
/* width: 100%;*/
/*}*/
.write_controllbox {
margin: 0;
padding: 0;
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -moz-flex;
display: -webkit-flex;
display: flex;
justify-content: space-between;
list-style: none;
}
.write_option {
display: inline-block;
text-align: center;
line-height: 30px;
width: 100%;
padding: 0;
margin: 2px;
align-content: center;
top: 0;
bottom: 0;
color: white;
background: #40404564;
position: relative;
outline-width: thin;
outline-color: #ec914b8f;
border-color: #ec914b8f;
border-style: groove;
border-width: 1px;
2024-10-11 17:17:57 +09:00
height: var(--ButtonHeight);
}
2024-10-23 17:06:27 +09:00
#title_field {
font-size: 20px;
}
.pop_layer .pop_container {
padding: 20px 25px;
}
.pop_layer p.ctxt {
color: #666;
line-height: 25px;
}
.pop_layer .btn_r {
2024-10-11 17:17:57 +09:00
width: 100%;
2024-10-23 17:06:27 +09:00
margin: 10px 0 20px;
padding-top: 10px;
border-top: 1px solid #DDD;
text-align: right;
2024-10-11 17:17:57 +09:00
}
2024-10-23 17:06:27 +09:00
.pop_layer {
display: none;
position: absolute;
top: 50%;
left: 50%;
width: 410px;
height: auto;
background-color: #fff;
border: 5px solid #3571B5;
z-index: 10;
2024-10-11 17:17:57 +09:00
}
2024-10-23 17:06:27 +09:00
.dim_layer {
display: none;
position: fixed;
_position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 100;
}
.dim_layer .dimBg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #000;
opacity: .5;
filter: alpha(opacity=50);
}
.dim_layer .pop_layer {
display: block;
}
a.btn_layerClose {
display: inline-block;
height: 25px;
padding: 0 14px 0;
border: 1px solid #304a8a;
background-color: #3f5a9d;
font-size: 13px;
color: #fff;
line-height: 25px;
}
a.btn_layerClose:hover {
border: 1px solid #091940;
background-color: #1f326a;
color: #fff;
2024-10-24 18:04:29 +09:00
}
.post_layer {
height: 100%;
place-content: space-between;
place-items: stretch;
display: grid;
gap: 10px;
/*grid-auto-rows: minmax(200px, auto);*/
grid-template-columns: repeat(auto-fill, minmax(300px, auto));
width: 100%;
}
.post_item {
justify-content: space-between;
flex-wrap: wrap;
flex-direction: row;
width: 100%;
border-radius: 10px;
background: #F0F0F524;
}
#postId {
display: none;
}
#writeDate {
text-align: right;
}
.post_attr {
display: block;
padding: 5px;
}
#content{
overflow: hidden;
overflow-y: hidden;
overflow-x: hidden;
2024-10-23 17:06:27 +09:00
}