OcttKB Cross-Repo Sync (HTML to Raw)

This commit is contained in:
2023-03-24 11:58:33 +00:00
parent e0528394e6
commit dc21b3c71c
1537 changed files with 93 additions and 1028 deletions

View File

@ -0,0 +1,31 @@
/* Ref: https://developer.mozilla.org/en-US/docs/Web/CSS/CSS3 */
.refnotes-abbr abbr[title] {
color: inherit;
font-style: normal;
text-decoration: none;
border-bottom: 1px dotted #aaa;
cursor: help;
}
.refnotes-abbr-term-not-found{
/* color:red;*/
font-style: oblique;
}
.refnotes-abbr-term{
/* color:blue;*/
}
/* Ref:https://aarontgrogg.com/lab/
Show the title for small screen
*/
/* this works based on the max-width*/
@media only screen and (max-width: 960px) {
.refnotes-abbr abbr:hover:after { content: ' ('attr(title)')'; }
}
@media (hover: none) {
/* Push the title attribute into generated content after the abbr. */
.refnotes-abbr abbr[title]::after {
content: ' ('attr(title)')'; }
}