Skip to content

Commit

Permalink
Homepage|Style: Target DPI is device DPI
Browse files Browse the repository at this point in the history
  • Loading branch information
danij-deng committed Nov 25, 2013
1 parent 3743991 commit a03e4d9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 12 deletions.
4 changes: 3 additions & 1 deletion web/classes/frontcontroller.class.php
Expand Up @@ -304,7 +304,9 @@ public function outputHeader($mainHeading='')
<head>
<title><?=$siteTitle?></title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<meta http-equiv="cleartype" content="on">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0, target-densityDpi=device-dpi">
<meta name="author" content="<?=$this->siteAuthor()?>" />
<meta name="keywords" content="<?php { $keywords = $this->defaultPageKeywords(); foreach($keywords as $keyword) echo $keyword.','; } ?>" />
<meta name="description" content="<?=$this->siteDescription()?>" />
Expand Down
4 changes: 3 additions & 1 deletion web/forums/skin/template/overall_header.html
Expand Up @@ -2,7 +2,9 @@
<html dir="{S_CONTENT_DIRECTION}" lang="{S_USER_LANG}">
<head>
<meta charset="{S_CONTENT_ENCODING}" />
<meta name="viewport" content="width=device-width" />
<meta http-equiv="cleartype" content="on">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0, target-densityDpi=device-dpi">
<meta name="author" content="David Gardner" />
<meta name="keywords" content="Doomsday,Doomsday Engine,Deng,Doom,Heretic,Hexen,jDoom,jHeretic,jHexen,sourceport,first person shooter,fps," />
<meta name="description" content="Home of the Doomsday Engine, a modern engine for playing classic 2.5d first person shooters DOOM, Heretic and Hexen." />
Expand Down
12 changes: 2 additions & 10 deletions web/style.css
Expand Up @@ -8,21 +8,13 @@ body {

color: #A7A29C;
font-family: "Open Sans",sans-serif !important;
/*font-size: 100%;
line-height: 1.5;*/

font-size: small;
padding: 0;
margin: 1.2em;
margin-top: 1.8em;
}

@media only screen and (max-width: 767px) {
body {
margin: 0px;
}
}

h1, h2, h3, h4, h5, h6 {
/*font-family: Verdana, Arial, Helvetica, sans-serif;*/
margin-bottom: 0;
margin-top: .6em;
font-weight: lighter;
Expand Down

0 comments on commit a03e4d9

Please sign in to comment.