diff options
author | Dennis Eriksen <dennis.se@gmail.com> | 2013-04-24 15:37:49 +0200 |
---|---|---|
committer | Dennis Eriksen <dennis.se@gmail.com> | 2013-04-24 15:37:49 +0200 |
commit | 30bbd5dd20e256b325008c9d63934dcc5c448e72 (patch) | |
tree | 36104c94e647b723ee9b3832d38881720e119a9e | |
parent | bugfix (diff) | |
download | Divid-30bbd5dd20e256b325008c9d63934dcc5c448e72.tar.gz |
temp
-rw-r--r-- | public/css/styles.less | 11 | ||||
-rw-r--r-- | views/test.ejs | 2 |
2 files changed, 11 insertions, 2 deletions
diff --git a/public/css/styles.less b/public/css/styles.less index 9a5e429..ed3e2c6 100644 --- a/public/css/styles.less +++ b/public/css/styles.less @@ -11,7 +11,11 @@ body { margin-top: @navbarHeight; background-color:white; } - +@media (max-width: 767px) { + body { + margin-top: 0; + } +} section.content { padding: 30px 5px 5px; } @@ -170,6 +174,11 @@ section.overview .lastactivity > .activity [class*="span"] { font-size: @fontSizeMini; color: @grayLight; } +@media (max-width: 480px) { + [class*="span"] .info { + text-align: left; + } +} section.overview .lastactivity > .activity [class*="span"] > .row-fluid [class*="span"] { min-height: 0; } diff --git a/views/test.ejs b/views/test.ejs index 24e8989..65a63b3 100644 --- a/views/test.ejs +++ b/views/test.ejs @@ -23,7 +23,7 @@ ================================================== --> <div class="span9 content"> <section class="content"> - <h1><%= title %></h1> + <h1><%= title %></h1> <p>Velkommen til <%= title %></p> <p>Her kommer det <em>kanskje</em> mer senere.</p> </section> |