Moved biblioteca to directory for CSS use.
This commit is contained in:
parent
42262e6468
commit
548365dd0a
40
1/LMSGI/biblioteca/biblioteca.xml
Normal file
40
1/LMSGI/biblioteca/biblioteca.xml
Normal file
@ -0,0 +1,40 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<?xml-stylesheet href="style.css" type="text/css"?>
|
||||
<library>
|
||||
<book>
|
||||
<title>Ishmael</title>
|
||||
<author>Daniel Quinn</author>
|
||||
<lang>EN</lang>
|
||||
<year>1992</year>
|
||||
</book>
|
||||
<book>
|
||||
<title>The Lamb's Supper: The Mass as Heaven on Earth</title>
|
||||
<author>Scott Hahn</author>
|
||||
<lang>EN</lang>
|
||||
<year>1999</year>
|
||||
</book>
|
||||
<book>
|
||||
<title>Steppenwolf</title>
|
||||
<author>Hermann Hesse</author>
|
||||
<lang>DT</lang>
|
||||
<year>1927</year>
|
||||
</book>
|
||||
<book>
|
||||
<title>Industrial Society and Its Future</title>
|
||||
<author>Theodore John "Unabomber" Kaczynski</author>
|
||||
<lang>EN</lang>
|
||||
<year>1995</year>
|
||||
</book>
|
||||
<book>
|
||||
<title>Towards a New Socialism</title>
|
||||
<author>William Paul Cockshott</author>
|
||||
<lang>EN</lang>
|
||||
<year>1993</year>
|
||||
</book>
|
||||
<book>
|
||||
<title>El Legado Del Cristianismo En La Cultura Occidental</title>
|
||||
<author>César Vidal</author>
|
||||
<lang>ES</lang>
|
||||
<year>2002</year>
|
||||
</book>
|
||||
</library>
|
35
1/LMSGI/biblioteca/style.css
Normal file
35
1/LMSGI/biblioteca/style.css
Normal file
@ -0,0 +1,35 @@
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
display: block;
|
||||
}
|
||||
|
||||
book {
|
||||
background-color: lightgreen;
|
||||
color: black;
|
||||
width: 400px;
|
||||
padding:10px;
|
||||
border: 3px solid;
|
||||
margin: 10px auto;
|
||||
}
|
||||
|
||||
title {
|
||||
text-decoration: underline;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
author {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
author:before {
|
||||
content: "Author: ";
|
||||
}
|
||||
|
||||
lang:before {
|
||||
content: "Language: ";
|
||||
}
|
||||
|
||||
year:before {
|
||||
content: "Publication: ";
|
||||
}
|
Loading…
Reference in New Issue
Block a user