52 lines
665 B
CSS
52 lines
665 B
CSS
|
|
packages {
|
||
|
|
margin: 1em;
|
||
|
|
padding: 0.25em;
|
||
|
|
border: 5px solid lightpink;
|
||
|
|
}
|
||
|
|
|
||
|
|
* {
|
||
|
|
display: block;
|
||
|
|
}
|
||
|
|
|
||
|
|
package {
|
||
|
|
padding-left: 0.25em;
|
||
|
|
}
|
||
|
|
|
||
|
|
package:is([needs-compilation=yes]) {
|
||
|
|
background-color: peru;
|
||
|
|
}
|
||
|
|
|
||
|
|
package:is([needs-compilation=no]) {
|
||
|
|
background-color: thistle;
|
||
|
|
}
|
||
|
|
|
||
|
|
package>name {
|
||
|
|
font-size: x-large;
|
||
|
|
padding-top: 0.5em;
|
||
|
|
}
|
||
|
|
|
||
|
|
maintainer {
|
||
|
|
display: list-item;
|
||
|
|
}
|
||
|
|
|
||
|
|
import {
|
||
|
|
padding-left: 1em;
|
||
|
|
display: list-item;
|
||
|
|
}
|
||
|
|
|
||
|
|
date::before {
|
||
|
|
content: "Published: ";
|
||
|
|
}
|
||
|
|
|
||
|
|
maintainer::before {
|
||
|
|
content: "Maintainer: ";
|
||
|
|
}
|
||
|
|
|
||
|
|
imports::before {
|
||
|
|
content: "Imports: ";
|
||
|
|
}
|
||
|
|
|
||
|
|
import::before {
|
||
|
|
list-style-type: disc;
|
||
|
|
}
|