-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtopbar.html
73 lines (73 loc) · 1.81 KB
/
topbar.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
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html>
<head>
<title>Topbar</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
body {
font-family: 'Roboto', sans-serif;
margin: 0;
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #FF9600;
}
li .align-left a {
display: block;
color: white;
text-align: center;
text-decoration: none;
font-family: 'Roboto', sans-serif;
text-size: 55px;
padding: 22px 16px;
float: left;
background-color: #FF9600;
}
li .align-left-nopadding a {
display: block;
color: white;
text-align: center;
text-decoration: none;
font-family: 'Roboto', sans-serif;
text-size: 55px;
float: left;
background-color: #FF9600;
}
li .align-right a {
display: block;
color: white;
text-align: center;
text-decoration: none;
font-family: 'Roboto', sans-serif;
text-size: 55px;
padding: 22px 16px;
float: right;
background-color: #FF9600;
}
li .bg a:hover {
background-color: #0000FF;
}
</style>
</head>
<body style="margin:0;">
<div class="topbar">
<ul>
<li>
<div class="align-left-nopadding">
<a href="/" target="_top"><img src="upptime-icon.svg" width="100%" height="44px"></img></a>
</div>
</li>
<li>
<div class="align-left">
<a href="/apidocs" target="_top">Unofficial Scratch API Docs</a>
</div>
</li>
</div>
</body>
</html>