52 lines
794 B
CSS
52 lines
794 B
CSS
*|* {
|
|
margin:0;
|
|
padding:0;
|
|
}
|
|
|
|
body {
|
|
display: flex;
|
|
justify-content:center;
|
|
align-items:center;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.bui_window_content {
|
|
display:block;
|
|
text-align:center;
|
|
padding: 5px;
|
|
|
|
}
|
|
|
|
.bui_button_root {
|
|
display: inline-block;
|
|
background: rgba(150,150,150,0.7);
|
|
user-select: none;
|
|
margin:1px;
|
|
padding:2px;
|
|
border:solid 1px rgba(90,90,90,0.5);
|
|
border-radius:5px;
|
|
cursor:pointer;
|
|
}
|
|
|
|
.bui_button_root:hover {
|
|
background: rgba(140,140,140,1);
|
|
margin:0px;
|
|
padding:3px;
|
|
transition:0.2s;
|
|
}
|
|
|
|
.bui_window_root {
|
|
position: relative;
|
|
background: rgba(200,200,200,1);
|
|
color: black;
|
|
border: solid 1px rgba(140,140,140,1);
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.bui_window_titlebar {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
background: rgba(100,100,100,1);
|
|
padding: 5px;
|
|
}
|