personal-website/resources/wdeUI.css

79 lines
1.7 KiB
CSS
Raw Normal View History

2023-03-18 02:16:32 +00:00
.StandartApplicationWindow{
width: 100%;
min-height: 200px;
background-color: #CCCCCC;
border: 1px solid #000000;
box-shadow: 1px 1px 0px #000,
inset -1px -1px 0px rgba(0, 0, 0, 0.27),
inset 1px 1px 0px #FFFFFF;
display: flex;
flex-direction: column;
align-items: flex-start;
padding: 4px;
/* padding-bottom: 50px; */
gap:4px;
overflow: hidden;
}
2023-03-17 16:13:41 +00:00
.WindowFrameTopBarButton{
2023-03-17 01:16:51 +00:00
width: 11px;
height: 11px;
padding: 0%;
2023-03-17 16:13:41 +00:00
background: linear-gradient(135deg, #999999 18.18%, #FFFFFF 81.82%);
2023-03-17 01:16:51 +00:00
border: 1px solid #222222;
box-shadow: 0.5px 0.5px 0px 0.5px #FFFFFF,
-0.5px -0.5px 0px 0.5px rgba(0, 0, 0, 0.25),
2023-03-17 16:13:41 +00:00
inset 1px 1px 0px rgba(255, 255, 255, 0.5),
inset -1px -1px 0px rgba(0, 0, 0, 0.27);
2023-03-18 02:16:32 +00:00
2023-03-17 01:16:51 +00:00
/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 0;
}
2023-03-18 00:34:56 +00:00
.WindowFrameTopBar{
width: 100%;
height: 13px;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
gap: 5px;
padding: 0px;
}
.WindowFrameTopBar .WindowFrameTitle{
position: relative;
top:1px;
pointer-events: none;
white-space: nowrap;
font-family: "Virtue";
letter-spacing: 0.35px;
}
2023-03-17 01:16:51 +00:00
.WindowFrameTopBarButton:active {
background-color: rgba(0, 0, 0, 0.4); /* Green */
box-shadow: 0.5px 0.5px 0px 0.5px #FFFFFF,
-0.5px -0.5px 0px 0.5px rgba(0, 0, 0, 0.25);
2023-03-18 00:34:56 +00:00
}
.WindowDragArea{
pointer-events: none;
width: 100%;
height: 100%;
background: linear-gradient(transparent 0%,white 0%, white 50%, transparent 50%);
background-size: 2px 2px;
filter: drop-shadow(1px 1px 0px #777777);
2023-03-17 01:16:51 +00:00
}