diff options
author | Stanislav Ochotnicky <sochotnicky@gmail.com> | 2009-08-10 20:57:01 +0200 |
---|---|---|
committer | Stanislav Ochotnicky <sochotnicky@gmail.com> | 2009-08-10 20:57:01 +0200 |
commit | cf75a67914798739e22e90ec134bd7a6b822b8b7 (patch) | |
tree | c95c20667caf32a4bc1d202b429cabbd290923a3 /web/media | |
parent | Prepared urls and settings for templates (diff) | |
download | collagen-cf75a67914798739e22e90ec134bd7a6b822b8b7.tar.gz collagen-cf75a67914798739e22e90ec134bd7a6b822b8b7.tar.bz2 collagen-cf75a67914798739e22e90ec134bd7a6b822b8b7.zip |
Basic functions of web working
This is really big commit, since there was no use putting in absolutely
non functional code until now.
Some templates might be simplified later on...
Diffstat (limited to 'web/media')
-rw-r--r-- | web/media/css/main.css | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/web/media/css/main.css b/web/media/css/main.css new file mode 100644 index 0000000..81ba1d2 --- /dev/null +++ b/web/media/css/main.css @@ -0,0 +1,35 @@ + +div.header { + background-color: black; + color: white; + font-weight: bolder; + font-size: x-large; + text-align: center; +} + +div.footer { + background-color: black; + color: white; + font-weight: bolder; +} + +div.compileinfo-odd { + background-color: #DDDAEC; +} + +div.intro { + font-size: 120%; + font-weight: bold; +} + +th { + background-color: #AF7BDB; +} + +tr.odd { + background-color: #DDDAEC; +} + +a:link { color: #0000ff; } +a:visited { color: #52188c; } + |