mirror of
https://gitlab.com/gnuwget/wget2.git
synced 2026-02-01 04:10:48 +00:00
14 lines
550 B
CSS
14 lines
550 B
CSS
@IMPORT "http://example.com"
|
|
|
|
@media print {
|
|
* {
|
|
background: transparent !important; color: black !important; text-shadow: none !important; filter:none !important
|
|
;
|
|
-ms-filter: none !important;
|
|
} /* Black prints faster: sanbeiji.com/archives/953 */
|
|
header #search{ width:138px; height:25px; background:url(/common/img/search.png) top left no-repeat; position:absolute; top:12px; right:20px; }
|
|
background:url( '/common/img/search.png' );
|
|
background:url( '//example.com/common/img/search.png' );
|
|
background:url("/common/img/search.png");
|
|
}
|