-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathheader-redo.html
More file actions
75 lines (68 loc) · 2 KB
/
header-redo.html
File metadata and controls
75 lines (68 loc) · 2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<html>
<head>
<link rel="stylesheet" href="css/site-main.css" media="screen">
<style>
.header-logo-left
{
float: left;
padding-left: 10pt;
}
.header-img
{
height: 100%;
width: auto;
}
.header-middle-push
{
width: auto;
height: 100%;
}
.header-nav-right
{
float: right;
}
.nav-span-object
{
text-align: center;
line-height: 40pt;
font-size: 18pt;
}
.hack
{
display: inline-block;
vertical-align: middle;
height: 100%;
}
.header-image
{
height: 25pt;
width: auto;
vertical-align: middle;
}
.header-logo-a
{
text-decoration: none;
}
</style>
</head>
<body>
<div class="wrapper">
<div id="page-header-desktop">
<div class="page-aligned">
<div class="header-logo-left">
<a href="/" class="header-logo-a">
<div style="height:40pt;">
<span class="hack"></span>
<img src="/images/logo-big.svg" alt="While False Studios" class="header-image"/>
</div>
</a>
</div>
<div class="header-nav-right">
<a href="/games/"><div class="nav-span-object">Games</div></a>
<a href="/about/"><div class="nav-span-object">About</div></a>
</div>
</div>
</div>
</div>
</body>
</html>