OcttKB Cross-Repo Sync (HTML to Raw)

This commit is contained in:
2023-06-11 19:17:13 +00:00
parent 5a5714ff49
commit 3f7aec7f5b
1575 changed files with 4 additions and 28509 deletions

View File

@ -1,31 +0,0 @@
/* 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)')'; }
}