6 lines
118 B
CSS
6 lines
118 B
CSS
/* add '[pdf]' next to links to PDF files */
|
|
a[href$=".pdf"]:after {
|
|
font-size: smaller;
|
|
content: " [pdf]";
|
|
}
|