mirror of
https://forge.murkfall.net/bluesaxman/blue.js.git
synced 2026-03-13 09:34:20 -06:00
Some more minor tweeks to blueui window class, and more tweeks to index and css
This commit is contained in:
27
css/css.css
27
css/css.css
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user