summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNico von Geyso <Nico.Geyso@FU-Berlin.de>2012-07-13 12:53:05 +0200
committerNico von Geyso <Nico.Geyso@FU-Berlin.de>2012-07-13 12:53:05 +0200
commit015607e9b62f72bcab073add650fd819caa42c1e (patch)
tree890b797db6c8a276e8a7f8a64c5eaaeb2b7b6d7f
parentb657113fec4dff8444bf0db8b9bb3b5244a6d074 (diff)
downloadwww-015607e9b62f72bcab073add650fd819caa42c1e.tar.gz
www-015607e9b62f72bcab073add650fd819caa42c1e.tar.bz2
www-015607e9b62f72bcab073add650fd819caa42c1e.zip
fixed typo, removed hover effect and added .pyc-files to gitignore
-rw-r--r--.gitignore1
-rw-r--r--index.html26
-rw-r--r--static/css/main.css6
-rw-r--r--utils/filters.pycbin497 -> 0 bytes
4 files changed, 14 insertions, 19 deletions
diff --git a/.gitignore b/.gitignore
index e35d885..b20f044 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
+.pyc
_build
diff --git a/index.html b/index.html
index 9f331d8..edb373e 100644
--- a/index.html
+++ b/index.html
@@ -33,22 +33,20 @@
<ul class="grid_16">
{% for page in site.pages|sort(attribute='title') %}
{% if page.path.startswith('services/') %}
- <li class="grid_8 {{ loop.cycle('omega', 'alpha') }}">
- <div class="link">
- <div class="grid_2 alpha">
- <img src="{{page.logo_url}}" alt="{{page.title}}" />
- </div>
+ <li class="grid_8 {{ loop.cycle('omega', 'alpha') }} link">
+ <div class="grid_2 alpha">
+ <img src="{{page.logo_url}}" alt="{{page.title}}" />
+ </div>
- <div class="gird_6 omega">
- <a href="{{page.get_url()}}">
- <span class="link"></span>
- {{page.title}}
- </a>
+ <div class="grid_6 omega">
+ <a href="{{page.get_url()}}">
+ <span class="link"></span>
+ {{page.title}}
+ </a>
- <p>
- {{page.description}}
- </p>
- </div>
+ <p>
+ {{page.description}}
+ </p>
</div>
</li>
{% endif %}
diff --git a/static/css/main.css b/static/css/main.css
index 437f20d..57a993a 100644
--- a/static/css/main.css
+++ b/static/css/main.css
@@ -53,14 +53,10 @@ a:hover {
color: #F00;
}
-div.link {
+li.link {
position: relative;
}
-div.link:hover {
- background-color: lightblue;
-}
-
span.link {
position:absolute;
width:100%;
diff --git a/utils/filters.pyc b/utils/filters.pyc
deleted file mode 100644
index a264890..0000000
--- a/utils/filters.pyc
+++ /dev/null
Binary files differ