mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-20 21:31:32 +03:00
438e6d4df9
also rename join --> useDark; clean up extraneous logging statements
98 lines
2.8 KiB
HTML
98 lines
2.8 KiB
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>Terminal</title>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport"
|
|
content="width=device-width, initial-scale=1, shrink-to-fit=no,maximum-scale=1"/>
|
|
<meta name="apple-mobile-web-app-capable" content="yes" />
|
|
<meta name="apple-touch-fullscreen" content="yes" />
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
|
|
<!--<link rel="apple-touch-icon" href="/~landscape/img/touch_icon.png">
|
|
<link rel="icon" type="image/png" href="/~landscape/img/Favicon.png">-->
|
|
<link rel="manifest"
|
|
href='data:application/manifest+json,{
|
|
"name": "Terminal",
|
|
"short_name": "Terminal",
|
|
"description": "A%20terminal%20for%20your%20Urbit.",
|
|
"display": "standalone",
|
|
"background_color": "%23FFFFFF",
|
|
"theme_color": "%23000000"}' />
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Source+Code+Pro&display=swap" rel="stylesheet">
|
|
<style>
|
|
body, #root {
|
|
height: 100vh;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.buffer-container {
|
|
height: calc(100% - 40px);
|
|
}
|
|
|
|
div.tabs {
|
|
height: 40px;
|
|
display: flex;
|
|
flex-flow: row nowrap;
|
|
justify-content: flex-start;
|
|
padding: 5px 5px 0 5px;
|
|
border-bottom: 1px solid black;
|
|
background-color: white;
|
|
}
|
|
|
|
div.tabs > * {
|
|
margin-left: 5px;
|
|
margin-right: 5px;
|
|
border: solid 1px black;
|
|
padding: 10px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
div.tab, button.tab {
|
|
margin-bottom: -1px; /** To overlay the selected tab on the tabs container bottom border */
|
|
border-top-left-radius: 5px;
|
|
border-top-right-radius: 5px;
|
|
font-family: monospace;
|
|
font-size: 14px;
|
|
line-height: 18px;
|
|
}
|
|
|
|
div.tabs > div.selected {
|
|
border-bottom: white solid 1px;
|
|
}
|
|
|
|
div.tabs > div.selected > a.session-name {
|
|
font-weight: bold;
|
|
}
|
|
|
|
div.tabs > a.delete-session {
|
|
padding: 5px;
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
div.tabs {
|
|
background-color: rgb(26, 26, 26);
|
|
color: rgba(255, 255, 255, 0.9);
|
|
border-bottom-color: rgba(255, 255, 255, 0.9);
|
|
}
|
|
|
|
div.tab, button.tab {
|
|
background-color: rgb(26, 26, 26);
|
|
color: rgba(255, 255, 255, 0.9);
|
|
border-color: rgba(255, 255, 255, 0.9);
|
|
}
|
|
|
|
div.tabs > div.selected {
|
|
border-bottom: black solid 1px;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script src="/session.js"></script>
|
|
</body>
|
|
</html>
|