You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
RnQ/Distro/Template/tips.css

61 lines
1.1 KiB
CSS

img {
foreground-size: contain;
}
.tip {
color: @ctrlBorderColor;
background-image: url(themepic:wallpaper);
background-color: #F0F0F0;
background-repeat: repeat;
border: 1dip solid @greyColorLightPressed;
padding: 2dip 5dip 2dip 4dip;
font-family: @mainFont;
font-size: @mainFontSize;
font-rendering-mode: snap-pixel;
size: min-content;
opacity: 0;
transition: opacity 0.3s cubic-out;
}
.tip.image {
padding: 0;
}
.tip:expanded {
opacity: 0.999;
}
.tip:expanded:hover {
opacity: 0.999;
}
.tip:hover {
// border: 1dip solid @frameBorderColor;
cursor: pointer;
}
.tipheader {
flow: horizontal;
white-space: nowrap;
size: max-content;
border-spacing: 5dip;
}
.tipheader span {
margin-top: -1dip;
}
.tipheader b {
font-size: 13dip;
font-weight: 600;
}
.tiptext {
margin-top: 2dip;
white-space: pre-wrap;
size: max-content;
max-width: 500dip;
}
.tipavatar {
margin-top: 2dip;
}
.tipimage {
display: block;
max-width: 300dip;
max-height: 300dip;
}
.tipembeds {
flow: horizontal;
border-spacing: 5dip;
}