podcast-webseite/assets/css/xml.css

96 lines
1.7 KiB
CSS
Raw Normal View History

2019-07-01 00:33:29 +02:00
/* This CSS stylesheet is an example of how we can style XML with CSS */
/* Group behavior */
channel {
display:block;
border: 1px solid gray;
margin:0.5em;
padding:0.5em;
background-color:whitesmoke;
list-style: none;
color: black;
}
item {
display:block;
border: 1px solid silver;
margin:0.5em;
padding:0.5em;
background-color:whitesmoke;
}
/* single items */
title {
2019-07-01 18:21:40 +02:00
display:block;
2019-07-01 00:33:29 +02:00
color: #ee7402;
font-size: 120%;
}
title:before,
2019-07-01 18:21:40 +02:00
.itunes_subtitle:after,
2019-07-09 11:38:47 +02:00
description:after,
.itunes_subtitle:before{
2019-07-01 00:33:29 +02:00
content: '\a';
white-space: pre;
}
2019-07-06 17:01:57 +02:00
title:after,
2019-07-06 17:31:28 +02:00
link:after,
download:after,
2019-07-09 11:38:47 +02:00
content:after,
content:before{
content: '\a \a ';
2019-07-01 00:33:29 +02:00
white-space: pre;
}
2019-07-06 17:31:28 +02:00
link,
download{
2019-07-01 00:33:29 +02:00
color: navy;
text-decoration: underline;
}
link:before{ content: "Link: "; }
2019-07-06 17:31:28 +02:00
download:before{ content: "Download: "; }
2019-07-01 00:33:29 +02:00
description{
color: #f94f22;
}
2019-07-01 18:21:40 +02:00
language:before{ content:" (In "; }
language:after{ content:"utscher Sprache)"; }
2019-07-09 11:38:47 +02:00
description:before{
content: "\a \a Beschreibung: ";
white-space: pre;
}
2019-07-01 00:33:29 +02:00
id,
copyright,
generator,
updated,
pubDate,
2019-07-01 18:21:40 +02:00
.itunes_summary,
.itunes_keywords,
.itunes_explicit,
.itunes_owner,
2019-07-03 23:05:26 +02:00
.itunes_new-feed-url,
2019-07-06 17:01:57 +02:00
.itunes_author,
guid,
2019-07-09 11:38:47 +02:00
.itunes_serial,
2019-07-01 00:33:29 +02:00
lastBuildDate{ display: none; }
2019-07-03 23:05:26 +02:00
name {color:red; text-decoration: underline;}
price {color:green;}
stock {color:brown;}
country {color:blue;}
2019-07-06 17:01:57 +02:00
content {
color: #424242;
background-color: #ccc;
display:block;
border: 1px solid gray;
margin:1em;
margin-right: 12em;
padding:0.5em;
background-color: #ccc;
list-style: none;
2019-07-03 23:05:26 +02:00
}
.itunes_block{
content: '\a\a\a\a\a\a\a\a\a\a';
2019-07-06 16:46:29 +02:00
padding: 64px;
float: right;
margin: 4px;
background: url("/images/podcast.min.png") no-repeat;
2019-07-03 23:05:26 +02:00
color: rgba(0,0,0,0);
}
2019-07-01 18:21:40 +02:00
.itunes_subtitle{ font-size: 70%;}