forked from mystiq/hydrogen-web
add some styles
This commit is contained in:
parent
9e7811299d
commit
38f403bd18
1 changed files with 44 additions and 0 deletions
44
index.html
44
index.html
|
@ -2,6 +2,50 @@
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
|
<style type="text/css">
|
||||||
|
#container {
|
||||||
|
height: 80vh;
|
||||||
|
border: 1px solid black;
|
||||||
|
font-family: sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
.SessionView {
|
||||||
|
display: flex;
|
||||||
|
height: 100%;
|
||||||
|
min-width: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ListView {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.SessionView > .ListView {
|
||||||
|
height: 100%;
|
||||||
|
flex: 0 0 auto;
|
||||||
|
border-right: 1px solid black;
|
||||||
|
list-style: none;
|
||||||
|
overflow-y: scroll;
|
||||||
|
}
|
||||||
|
|
||||||
|
.SessionView > .ListView > li {
|
||||||
|
padding: 10px;
|
||||||
|
border-bottom: 1px solid grey;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.SessionView > .RoomView {
|
||||||
|
padding: 10px;
|
||||||
|
flex: 1;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
.SessionView > .RoomView > .ListView {
|
||||||
|
flex: 1;
|
||||||
|
overflow-y: scroll;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<p id="syncstatus"></p>
|
<p id="syncstatus"></p>
|
||||||
|
|
Loading…
Reference in a new issue