fix typo in header's charset info; add language tag to html; trying to figure out why footer appears in middle of game + presskit pages
This commit is contained in:
@@ -22,6 +22,7 @@ mark {
|
|||||||
background-color: #900C3F;
|
background-color: #900C3F;
|
||||||
color: hotpink;
|
color: hotpink;
|
||||||
}
|
}
|
||||||
|
ul { list-style-position: inside; }
|
||||||
|
|
||||||
.grid {
|
.grid {
|
||||||
display: grid;
|
display: grid;
|
||||||
@@ -194,11 +195,10 @@ mark {
|
|||||||
.footer-row {
|
.footer-row {
|
||||||
grid-area: 8 / 1 / 9 / 5;
|
grid-area: 8 / 1 / 9 / 5;
|
||||||
background-color: #A8577E;
|
background-color: #A8577E;
|
||||||
text-align: center;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.footer {
|
.footer {
|
||||||
background-color: #5c374c;
|
background-color: pink;
|
||||||
padding-top: 5px;
|
padding-top: 5px;
|
||||||
padding-right: 25px;
|
padding-right: 25px;
|
||||||
box-shadow: 0 100vh 0 100vh #581845;
|
box-shadow: 0 100vh 0 100vh #581845;
|
||||||
|
|||||||
@@ -178,12 +178,11 @@ ul { list-style-position: inside; }
|
|||||||
|
|
||||||
.footer-row {
|
.footer-row {
|
||||||
grid-area: 4 / 1 / 5 / 4;
|
grid-area: 4 / 1 / 5 / 4;
|
||||||
background-color: #EC424A;
|
background-color: green;
|
||||||
text-align: right;
|
|
||||||
padding-top: 5px;
|
|
||||||
padding-right: 25px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.footer {
|
#footer {
|
||||||
background-color: #060d1a;
|
background-color: #060d1a;
|
||||||
|
text-align: right;
|
||||||
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|||||||
+1
-4
@@ -1,5 +1,6 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
% include('header.tpl')
|
% include('header.tpl')
|
||||||
</head>
|
</head>
|
||||||
@@ -8,12 +9,8 @@
|
|||||||
% include('logo-bar.tpl')
|
% include('logo-bar.tpl')
|
||||||
% include('nav.tpl')
|
% include('nav.tpl')
|
||||||
<div class="body-row"> </div>
|
<div class="body-row"> </div>
|
||||||
|
|
||||||
{{!base}}
|
{{!base}}
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
% include('footer.tpl')
|
% include('footer.tpl')
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
<title>{{title or 'blessfrey.me'}}</title>
|
<title>{{title or 'blessfrey.me'}}</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset="utf-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||||
<link rel="stylesheet" type="text/css" href="static/css/{{css}}.css"/>
|
<link rel="stylesheet" type="text/css" href="static/css/{{css}}.css"/>
|
||||||
|
|||||||
Reference in New Issue
Block a user