Some more minor tweeks to blueui window class, and more tweeks to index and css

This commit is contained in:
bluesaxman
2022-04-07 19:51:27 -06:00
parent 40b4ae07a6
commit f25979eff1
3 changed files with 33 additions and 7 deletions

View File

@@ -4,10 +4,17 @@
}
body {
width: 100%;
height: 100%;
display: flex;
justify-content:center;
align-items:center;
flex-direction: column;
}
body > .bui_window_root {
flex:1;
width: 99%;
height: 99%;
}
.bui_window_content {
@@ -36,9 +43,10 @@ body {
}
.bui_window_root {
display: inline-block;
position: relative;
background: rgba(200,200,200,1);
display: block;
position: absolute;
background: rgba(200,200,200,0.7);
backdrop-filter: blur(5px);
color: black;
border: solid 1px rgba(140,140,140,1);
border-radius: 5px;
@@ -60,3 +68,14 @@ body {
right: 0;
top: 0;
}
.bui_window_resize_handle {
position: absolute;
display: block;
bottom: 0;
right: 0;
height: 5px;
width: 5px;
background: rgba(0,0,0,0.01);
cursor: pointer;
}