Skip to content

Commit

Permalink
Merge branch 'master' of github.com:timehome/djangodash2011
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelcaricio committed Jul 30, 2011
2 parents d626b8d + 97d80e7 commit 093d7ed
Show file tree
Hide file tree
Showing 8 changed files with 6,801 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -9,3 +9,4 @@ dist/
.project
.pydevproject
*.db
.livereload
2 changes: 1 addition & 1 deletion myimgat/apps/wall/urls.py
@@ -1,4 +1,4 @@
from django.conf.urls.defaults import patterns, include, url
from django.conf.urls.defaults import patterns, url
from django.views.generic.simple import direct_to_template

urlpatterns = patterns('',
Expand Down
Binary file added myimgat/static/css/.styles.css.swo
Binary file not shown.
48 changes: 48 additions & 0 deletions myimgat/static/css/styles.css
@@ -0,0 +1,48 @@
html, body, h1, h2 {
padding: 0;
margin: 0;
}
body {
font-family: arial,helvetica,freesans,sans-serif;
}
header {
position: fixed;
overflow: hidden;
left: 0;
top: 0;
right: 0;
padding: 8px;
background: rgba(0, 0, 0, 0.6);
}
header h1 {
color: #6b21a9;
font-family: 'Leckerli One', cursive;
font-size: 28px;
float: left;
text-shadow: 0 1px #fff, 1px 0 #fff, -1px 0 #fff, 0 -1px #fff;
padding-right: 20px;
line-height: 22px;
}
nav {
float: left;
}
nav a {
color: #fff;
padding: 5px;
float: left;
text-decoration: none;
margin-right: 4px;

}
nav a:hover {
}
nav .selected {
border-bottom: 4px solid #fff;
}
.wall {
padding-top: 48px;
}
.wall img {
float: left;
}

0 comments on commit 093d7ed

Please sign in to comment.