diff options
-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> |