ds-rss/style-rss.css

46 lines
777 B
CSS

rss {
display: block;
font-family: verdana, arial;
}
channel {
display: inline-grid;
}
channel title {
display: block;
margin: 5px;
padding: 2px;
color: gray;
border-bottom: 1px solid silver;
font-size: 2em;
}
channel > link {
display: block;
font-size: small;
color: blue;
padding-left: 10px;
}
channel item {
display: inline-block;
text-align: center;
margin-top: 1em;
}
pubDate::before {
content:"Veröffentlicht: ";
}
managingEditor::before{
content:"E-Mail: ";
}
lastBuildDate::before{
content:"Letzte Aktualisierung: ";
}
enclosure::before {
display: block;
content: attr(url);
font-size: small;
color: blue;
}
/* all hidden elements */
item > link, item > description, channel image, image title, language, ttl, guid, category {
display: none;
}