-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathtop-navigation.html
60 lines (60 loc) · 1.11 KB
/
top-navigation.html
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
<!doctype html>
<html lang=en>
<head>
<meta charset=utf-8>
<title>Top navigation</title>
<style>
body {
padding: 0;
margin: 0;
}
a {
align-items: center;
display: flex;
text-decoration: none;
}
.nav {
background-color: black;
color: blue;
cursor: pointer;
display: flex;
font-size: 50px;
font-weight: bold;
/* Not sure how to algorithmically chose a minimal value here
* relative to the font-size that guarantees that font descenders
* don't show outside of the navigation. */
height: 70px;
}
.nav-item {
padding: 5px 10px;
}
.nav-item.profile {
padding: 0px 10px 0px 0px;
}
.nav .pull-right {
display: flex;
margin-left: auto;
}
.nav-item:hover {
background-color: red;
color: green;
}
img {
height: 100%;
padding-right: 10px;
/*width: 50px;*/
}
</style>
</head>
<body>
<div class="nav">
<a class="nav-item" href="name">Website</a>
<div class="pull-right">
<a class="nav-item" href="new">New post</a>
<a class="nav-item" href="new">Settings</a>
<a class="nav-item profile" href="profile"><img src="200x200.png"/>Username</a>
</div>
</div>
<p>Body</p>
</body>
</html>