vybe/client/index.html

103 lines
1.9 KiB
HTML
Raw Normal View History

2023-05-06 20:55:04 -07:00
<!DOCTYPE html>
<html lang="en">
2023-07-30 18:06:21 -07:00
<head>
<script src="/openpgp.min.js"></script>
<script src="/socket.io.min.v4.6.1.js"></script>
<script src="/aes.js"></script>
2023-08-30 21:00:17 -07:00
<script type="module" src="/auth.js"></script>
2023-07-30 18:06:21 -07:00
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>vybe</title>
<style>
* {
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
sans-serif;
}
body,
button,
input {
background: #020202;
color: #eaeaea;
}
body {
display: flex;
align-items: stretch;
margin: 0;
min-width: min-content;
2023-08-30 21:00:17 -07:00
}
2023-12-28 11:54:16 -08:00
h3, h4 {
margin: 10px 0;
2023-08-30 21:00:17 -07:00
}
button {
border-color: #767676;
}
.hidden {
display: none;
2023-07-30 18:06:21 -07:00
}
.column {
flex: 1;
2023-08-30 21:00:17 -07:00
margin: 5px;
2023-07-30 18:06:21 -07:00
overflow: hidden;
}
2023-08-30 21:00:17 -07:00
#threads {
max-width: 250px;
2023-07-30 18:06:21 -07:00
}
2023-08-30 21:00:17 -07:00
.thread.selected {
background-color: #4f4f4f;
}
2023-12-28 11:54:16 -08:00
.thread:hover {
background-color: #3b3b3b;
}
2023-08-30 21:00:17 -07:00
#newthread {
margin-top: 5px;
2023-07-30 18:06:21 -07:00
}
2023-12-28 11:54:16 -08:00
#createthread {
max-width: 350px;
}
2023-07-30 19:31:26 -07:00
#permissions {
margin-bottom: 5px;
}
2023-12-28 11:54:16 -08:00
#title {
margin: 4px 2px;
}
.tab {
border: 0;
margin-top: 2px;
padding: 5px 7px;
color: #ccc;
font-weight: 500;
}
.tab.active {
background-color: #4f4f4f;
color: #fff;
}
.tab:hover {
background-color:#3b3b3b;
}
#messages {
margin: 4px 2px;
}
2023-07-30 18:06:21 -07:00
#msginput {
margin-top: 15px;
}
.message {
margin-bottom: 5px;
2023-08-30 21:00:17 -07:00
overflow-wrap: anywhere;
2023-07-30 18:06:21 -07:00
}
#loadmore {
margin-bottom: 10px;
}
.channel {
font-weight: normal;
}
.member {
margin: 5px 0;
}
</style>
</head>
<body>
</body>
2023-05-06 20:55:04 -07:00
</html>