1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
/*
* Copyright 2005 - 2009 The Citadel Team
* Licensed under the GPL V3
*/
* {
display: block;
}
:root {
margin: 50px;
}
channel > title {
font-size: x-large;
text-align: center;
}
channel > title:after {
display: block;
padding: 50px;
content: "This is an RSS feed, designed to be read in an RSS application.";
background-color: grey;
color: white;
}
item {
margin: 25px 0 20px 0;
}
item > title {
font-size: medium;
margin-bottom: 20px;
}
item > link {
font-size: small;
margin-top: 6px;
margin-bottom: 6px;
}
item > description {
font-size: small;
}
item > pubDate {
font-size: small;
}
channel > link,
channel > copyright,
channel > lastBuildDate,
channel > generator,
channel > docs,
language,
lastBuildDate,
ttl,
guid,
category {
display: none;
}
|