From a53b72c515be3b3a660262eb6a2b011a6221a569 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Orsini Date: Thu, 12 Oct 2017 23:48:57 +0200 Subject: [PATCH] fixed missing style file --- pnews/src/main/resources/style.css | 69 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 pnews/src/main/resources/style.css diff --git a/pnews/src/main/resources/style.css b/pnews/src/main/resources/style.css new file mode 100644 index 0000000..85a880d --- /dev/null +++ b/pnews/src/main/resources/style.css @@ -0,0 +1,69 @@ +a { + text-decoration: none; + color: black; +} + +body { + margin: 0 0 0 0; + padding: 1em 1em 1em 1em; + background-color: #eee; + font-family: sans-serif; +} + +nav { + font-size: 125%; + margin: 0 0 0 0; + padding: 0 0 0 0; +} + +a.active { + text-decoration: none; + border-bottom: 4px solid black; +} + +div { + margin: 0em 0em 0em 0em; + padding: 0 0 0 0; +} + +div.article { + margin-bottom: 1em; +} + +.article-info { + font-size: 80%; + color: #bbb; +} + +img { + margin: 0em 1em 1em 0em; + padding: 0 0 0 0; + width: 8em; +} + +p { + margin: 1em 1em 1em 1em; + padding: 0 0 0 0; +} + +.left { + float: left; +} + +h2 { + clear: left; + margin: 0 0 0 0; + padding: 0 0 0 0; +} + +nav ul { + list-style-type: none; + padding: 0 0 0 0; +} + +nav ul li { + display: inline; + margin: 0em 1em 0 0; + padding: 0 0 0 0; + text-transform: uppercase; +} -- 2.7.4