diff --git a/1/LMSGI/biblioteca/biblioteca.xml b/1/LMSGI/biblioteca/biblioteca.xml new file mode 100644 index 0000000..39d24f7 --- /dev/null +++ b/1/LMSGI/biblioteca/biblioteca.xml @@ -0,0 +1,40 @@ + + + + + Ishmael + Daniel Quinn + EN + 1992 + + + The Lamb's Supper: The Mass as Heaven on Earth + Scott Hahn + EN + 1999 + + + Steppenwolf + Hermann Hesse + DT + 1927 + + + Industrial Society and Its Future + Theodore John "Unabomber" Kaczynski + EN + 1995 + + + Towards a New Socialism + William Paul Cockshott + EN + 1993 + + + El Legado Del Cristianismo En La Cultura Occidental + César Vidal + ES + 2002 + + diff --git a/1/LMSGI/biblioteca/style.css b/1/LMSGI/biblioteca/style.css new file mode 100644 index 0000000..c5646ee --- /dev/null +++ b/1/LMSGI/biblioteca/style.css @@ -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: "; +}