summaryrefslogtreecommitdiffstats
path: root/static/css
diff options
context:
space:
mode:
authorNico von Geyso <Nico.Geyso@FU-Berlin.de>2012-07-09 17:08:41 +0200
committerNico von Geyso <Nico.Geyso@FU-Berlin.de>2012-07-09 17:08:41 +0200
commitf25236bd6f1082f779fc365f7d2c14a60891dcf5 (patch)
tree66ce571e4a3b711715721261680d4802efa6d7b1 /static/css
parentc13d334376c5bc5eca664fe1a5abf7a54e24ecbc (diff)
downloadwww-f25236bd6f1082f779fc365f7d2c14a60891dcf5.tar.gz
www-f25236bd6f1082f779fc365f7d2c14a60891dcf5.tar.bz2
www-f25236bd6f1082f779fc365f7d2c14a60891dcf5.zip
some content here and there
Diffstat (limited to 'static/css')
-rw-r--r--static/css/main.css15
-rw-r--r--static/css/prettify.css120
2 files changed, 133 insertions, 2 deletions
diff --git a/static/css/main.css b/static/css/main.css
index 57881ae..7ec54cc 100644
--- a/static/css/main.css
+++ b/static/css/main.css
@@ -20,18 +20,29 @@ body {
font-size: 120%;
}
-#services li {
+#services {
+ margin-top: 40px;
+}
+
+#services ul, #news p {
+ margin-left: 50px;
+}
+#services ul li {
list-style-type: none;
vertical-align: bottom;
+ float: left;
+ height: 90px;
}
footer {
text-align: center;
+ margin: 20px;
}
a {
text-decoration: none;
- color: #DF0101;
+ font-weight: bold;
+ color: #000;
}
a:hover {
diff --git a/static/css/prettify.css b/static/css/prettify.css
new file mode 100644
index 0000000..8eb296d
--- /dev/null
+++ b/static/css/prettify.css
@@ -0,0 +1,120 @@
+/*
+ * Derived from einaros's Sons of Obsidian theme at
+ * http://studiostyl.es/schemes/son-of-obsidian by
+ * Alex Ford of CodeTunnel:
+ * http://CodeTunnel.com/blog/post/71/google-code-prettify-obsidian-theme
+ */
+
+.str
+{
+ color: #EC7600;
+}
+.kwd
+{
+ color: #93C763;
+}
+.com
+{
+ color: #66747B;
+}
+.typ
+{
+ color: #678CB1;
+}
+.lit
+{
+ color: #FACD22;
+}
+.pun
+{
+ color: #F1F2F3;
+}
+.pln
+{
+ color: #F1F2F3;
+}
+.tag
+{
+ color: #8AC763;
+}
+.atn
+{
+ color: #E0E2E4;
+}
+.atv
+{
+ color: #EC7600;
+}
+.dec
+{
+ color: purple;
+}
+pre.prettyprint
+{
+ padding: 8px;
+ display: inline-block;
+ border: 0px solid #888;
+}
+ol.linenums
+{
+ margin-top: 0;
+ margin-bottom: 0;
+}
+.prettyprint {
+ background: #000;
+}
+li.L0, li.L1, li.L2, li.L3, li.L4, li.L5, li.L6, li.L7, li.L8, li.L9
+{
+ color: #555;
+ list-style-type: decimal;
+}
+li.L1, li.L3, li.L5, li.L7, li.L9 {
+ background: #111;
+}
+@media print
+{
+ .str
+ {
+ color: #060;
+ }
+ .kwd
+ {
+ color: #006;
+ font-weight: bold;
+ }
+ .com
+ {
+ color: #600;
+ font-style: italic;
+ }
+ .typ
+ {
+ color: #404;
+ font-weight: bold;
+ }
+ .lit
+ {
+ color: #044;
+ }
+ .pun
+ {
+ color: #440;
+ }
+ .pln
+ {
+ color: #000;
+ }
+ .tag
+ {
+ color: #006;
+ font-weight: bold;
+ }
+ .atn
+ {
+ color: #404;
+ }
+ .atv
+ {
+ color: #060;
+ }
+}