ds-rss/style-rss.css

46 lines
777 B
CSS
Raw Normal View History

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