summaryrefslogtreecommitdiffstats
path: root/static
diff options
context:
space:
mode:
authorHolger Levsen <holger@debian.org>2014-09-15 19:16:44 +0000
committerHolger Levsen <holger@debian.org>2014-09-15 19:16:44 +0000
commit32c9830f813dfbd759dcdc731eefbb7e8aef6287 (patch)
tree24c2b67dd8b0eb1e9431f167cb996f145bb70035 /static
parent6abe9015bf946aa728951634ad1ec6c36c6f4430 (diff)
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
Diffstat (limited to 'static')
-rw-r--r--static/style.css133
1 files changed, 133 insertions, 0 deletions
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;
+ }
+}

© 2014-2024 Faster IT GmbH | imprint | privacy policy