From 32c9830f813dfbd759dcdc731eefbb7e8aef6287 Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Mon, 15 Sep 2014 19:16:44 +0000 Subject: introduce new directory and serve static files from there, currently just static/style.css git-svn-id: svn+ssh://svn.debian.org/svn/secure-testing@28799 e39458fd-73e7-0310-bf30-c45bca0a0e42 --- static/style.css | 133 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 133 insertions(+) create mode 100644 static/style.css (limited to 'static') diff --git a/static/style.css b/static/style.css new file mode 100644 index 0000000000..0e02a61274 --- /dev/null +++ b/static/style.css @@ -0,0 +1,133 @@ +html { + font-size: 100%; + -webkit-text-size-adjust: 100%; + -ms-text-size-adjust:100%; +} + +body { + width: 90%; + max-width: 1200px; + margin: 2em auto 1em; + font-family: "Helvetica Neue",Helvetica,Arial,sans-serif; + font-size: 14px; + line-height: 20px; + color: #333333; +} + +header { + border-bottom: 1px solid crimson; + margin-bottom: 2em; +} + +a { + color:#0088cc; + text-decoration:none; +} + +a:hover, a:focus { + color:#005580; + text-decoration:underline; +} + +ul, li { + list-style: none; +} + +ul, ol { + padding-left: 0; +} + +h1 { + font-size : 250%; + padding: 0; + margin: 0; + line-height: 1.4em; +} + +h2 { + font-size : 110%; + background: crimson; + margin: 1em 0 0; + padding: 0.5em; + color: #fff; + border-top-left-radius: 0.5em; + border-top-right-radius: 0.5em; +} + +h3 { + font-size : 110%; +} + +table { + width: 100%; + border: 1px solid #ddd; + border-radius: 0.5em; + border-collapse: collapse; + box-shadow: 0 1px 3px #eee; + margin-bottom: 2em; +} + +tr(even) { + background-color: #fafafa; +} + +td, th { + text-align: left; + padding: 0.25em 0.5em; + border-bottom: 1px solid #ddd; + border-collapse: collapse; + vertical-align: top; +} + +table tr:last-child td { + border: none; +} + +th { + background: #eee; + padding: 0.5em; +} + +hr { + display: none; +} + +footer { + text-align: center; + margin-top: 1em; +} + +form { + text-align: center; + padding: 1em 0; + margin: 1em 0; + border-top: 1px solid #ddd; + border-bottom: 1px solid #ddd; +} + +span.red { color: red; } +span.purple { color: purple; } +span.green { color: green; } +span.dangerous { color: rgb(191,127,0); } + +@media all and (max-width: 641px) { + body { + font-size: 13px; + } + table { + table-layout: fixed; + } + td, th { + overflow: hidden; + } +} + +@media all and (min-width: 641px) { + header { + background: url(https://tracker.debian.org/static/img/logo.png) top right no-repeat; + min-height: 60px; + } + h1 { + line-height: 2.4em; + } +} -- cgit v1.2.3