1e52f459c9
The-Compiler wants a more beautiful test case since the old one was pretty weird and took lots of explaining at pytest demos, so I made a new one. This one is a bit nicer on the eye and - to say it with The-Compiler's words - has no "weird pixelated globe with the geocities-like background". To compensate for the globe I've put in some trivia facts so that - if you are one of the people that like to stare at test pages - you can always learn something.
17 lines
425 B
CSS
17 lines
425 B
CSS
@import 'external-in-extern.css';
|
|
/* We want to make sure that assets referenced in external css files are
|
|
* properly included
|
|
*/
|
|
div.dyk {
|
|
/* Did you know? */
|
|
background-image: url('DYK.png');
|
|
background-repeat: no-repeat;
|
|
/* Image is 128px wide */
|
|
min-height: 128px;
|
|
padding-left: 148px;
|
|
margin-top: 10px;
|
|
margin-bottom: 10px;
|
|
border: 2px solid #474747;
|
|
border-radius: 64px;
|
|
}
|
|
|