544
545
546
547
548
549
550
551
552
553
554
555
556
557
...
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
...
911
912
913
914
915
916
917
918
919
920
921
922
923
924
|
justify-content: center;
> .like, > .rt {
margin: 0.5em 0.3em;
padding-left: 1.3em;
background-size: 1.1em;
background-repeat: no-repeat;
min-width: 0.3em;
&:empty {
transition: 0.3s;
opacity: 0.0001; // qutebrowser won't show hints if opacity=0 :(
&:hover, &:focus { opacity: 0.6 !important; }
}
}
> .like { background-image: url(/s/heart.webp); }
................................................................................
}
ul.remarks {
margin: 0; padding: 0;
list-style-type: none;
li {
border-top: 1px solid otone(-22%);
border-bottom: 2px solid otone(-55%);
border-radius: 3px;
background: otone(-25%,-0.4);
color: otone(25%);
text-align: center;
padding: 0.3em 0;
margin: 0.2em 0.1em;
cursor: default;
................................................................................
div.lede {
display: grid;
grid-template-columns: 1fr min-content;
grid-template-rows: 1.5em 1fr;
padding: 0.1in 0.3in;
margin: 0 -0.2in;
margin-top: 0.2in;
border-radius: 3px;
background: linear-gradient(to bottom, tone(-40%,-0.5), transparent);
border-top: 1px solid tone(-5%,-0.7);
> .promo {
grid-row: 1/2; grid-column: 1/2;
font-style: italic;
font-size: 90%;
|
|
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
...
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
...
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
|
justify-content: center;
> .like, > .rt {
margin: 0.5em 0.3em;
padding-left: 1.3em;
background-size: 1.1em;
background-repeat: no-repeat;
min-width: 0.3em;
&:focus {
outline: none;
opacity: 0.9 !important;
filter: brightness(1.7) drop-shadow(0 0 15px rgb(255,150,200));
}
&:empty {
transition: 0.3s;
opacity: 0.0001; // qutebrowser won't show hints if opacity=0 :(
&:hover, &:focus { opacity: 0.6 !important; }
}
}
> .like { background-image: url(/s/heart.webp); }
................................................................................
}
ul.remarks {
margin: 0; padding: 0;
list-style-type: none;
li {
border-top: 1px solid otone(-22%);
border-bottom: 1px solid otone(-53%);
box-shadow: 0 1px 1px otone(-57%);
text-shadow: 1px 1px otone(-60%);
border-radius: 3px;
background: otone(-25%,-0.4);
color: otone(25%);
text-align: center;
padding: 0.3em 0;
margin: 0.2em 0.1em;
cursor: default;
................................................................................
div.lede {
display: grid;
grid-template-columns: 1fr min-content;
grid-template-rows: 1.5em 1fr;
padding: 0.1in 0.3in;
margin: 0 -0.2in;
margin-top: 0.2in;
& + & { margin-top: 0; }
border-radius: 3px;
background: linear-gradient(to bottom, tone(-40%,-0.5), transparent);
border-top: 1px solid tone(-5%,-0.7);
> .promo {
grid-row: 1/2; grid-column: 1/2;
font-style: italic;
font-size: 90%;
|