add feed support

This commit is contained in:
virmaior 2022-07-18 01:18:01 +09:00 committed by GitHub
parent 63f2442d6c
commit 13be01f68b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,17 @@
.ii_info {
BODY {
--feed_ratio: 2.5;
}
H1 {
background-color:blue;
color:white;
height:calc(108px * (var(--feed_ratio) - 1));
margin-top:0;
padding:5px;
margin-bottom:108px;
width:calc(100% - (192px * var(--feed_ratio)));
}
.ii_info_line {
font-weight:bold;
background-color:#ccc;
}
.ii {
width:100%;
@ -9,7 +20,7 @@
}
.ii_key_DIV {
flex:0 0 30vw;
flex:0 0 40vw;
font-weight:bold;
}
.ii_value_DIV {
@ -19,8 +30,12 @@
.ii_value {
width:75%;
}
.ii_explain {
width:29vw;
overflow:scroll;
max-height:140px;
.feed {
position:absolute;
top:10px;
right:0px;
width:calc(192px * var(--feed_ratio));
height:calc(108px * var(--feed_ratio));
z-index:10;
}