mirror of
https://git.alemi.dev/fedicharter.git
synced 2024-11-14 04:49:20 +01:00
59 lines
930 B
HTML
59 lines
930 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
body {
|
|
color: #eeeeee;
|
|
background-color: #111111;
|
|
font-family: monospace;
|
|
}
|
|
h1 {
|
|
color: #bf616a;
|
|
}
|
|
input[type="text"] {
|
|
color: #bf616a;
|
|
background-color: #111111;
|
|
border: solid;
|
|
border-width: 1px;
|
|
outline: none;
|
|
font-family: monospace;
|
|
}
|
|
input[type="submit"] {
|
|
border: 0;
|
|
background: #111111;
|
|
box-shadow: none;
|
|
border: solid;
|
|
border-width: 1px;
|
|
color: #bf616a;
|
|
margin: 5px;
|
|
padding-top: 2px;
|
|
padding-bottom: 3px;
|
|
cursor: pointer;
|
|
}
|
|
.topnav {
|
|
background-color: #333;
|
|
overflow: hidden;
|
|
width: 100%;
|
|
position: sticky;
|
|
top: 0px;
|
|
left: 0px;
|
|
}
|
|
.topnav h1 {
|
|
display: inline;
|
|
}
|
|
.app-content {
|
|
width: 100%;
|
|
}
|
|
.full-width {
|
|
width: 100%;
|
|
}
|
|
</style>
|
|
<html>
|
|
<head>
|
|
</head>
|
|
<body>
|
|
<div class="topnav">
|
|
<h1>fediverse navigator</h1>
|
|
<a>heavily under construction</a>
|
|
</div>
|
|
<div id="#app" class="full-width"></div>
|
|
</body>
|
|
</html>
|