64 lines
691 B
CSS
64 lines
691 B
CSS
:root {
|
|
--BarHeight: 3em;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
overflow-y: hidden;
|
|
}
|
|
|
|
img, video {
|
|
max-width: 100%;
|
|
}
|
|
|
|
#Root {
|
|
/*margin-bottom: 2em;*/
|
|
}
|
|
|
|
#Bottom {
|
|
display: block;
|
|
width: 100%;
|
|
height: var(--BarHeight);
|
|
|
|
position: fixed;
|
|
bottom: 0;
|
|
left: 0;
|
|
|
|
border: 2px solid black;
|
|
}
|
|
|
|
#DataView {
|
|
white-space: break-spaces;
|
|
}
|
|
|
|
.Window {
|
|
background: white;
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
max-width: 100%;
|
|
min-width: 100%;
|
|
|
|
height: 100vh;
|
|
overflow-y: auto;
|
|
padding-bottom: var(--BarHeight);
|
|
}
|
|
|
|
.View.Note {
|
|
border: 4px solid purple;
|
|
margin: 12px;
|
|
}
|
|
|
|
.View.Note .Profile.Icon {
|
|
width: 64px;
|
|
}
|
|
|
|
.Gallery > div {
|
|
display: inline-block;
|
|
}
|