Path: blob/main/public/games/files/webretro/assets/jswindow.css
1034 views
body {1overflow: hidden;2}34.window {5resize: both;6overflow: hidden;7position: absolute;8border: 2px solid darkgrey;9margin: 0px;10background-color: #DDD;11cursor: default;12min-width: 20px;13min-height: 20px;14padding: 0px;15z-index: 1000;16}1718.windowbar {19font-family: sans-serif;20user-select: none;21width: calc(100% - 4px);22padding: 2px;23height: 16px;24line-height: 16px;25color: black;26background-color: lightblue;27background-image: url("bar.png");28font-size: 12px;29border-bottom: 2px solid darkgrey;30overflow: hidden;31}3233.windowicon, .windowtitle, .windowclose {34display: inline-block;35}3637.windowicon {38background-repeat: no-repeat;39background-position: center;40background-size: contain;41width: 16px;42height: 16px;43position: absolute;44top: 2px;45left: 2px;46}4748.windowtitle {49position: relative;50}5152.windowicon+.windowtitle {53left: 18px;54}5556.windowclose {57position: absolute;58top: 2px;59right: 2px;60width: 14px;61height: 14px;62line-height: 14px;63text-align: center;64background-color: tomato;65border: 1px outset lightgray;66}6768.windowclose:active {69border-style: inset;70}7172.windowcontent {73width: 100%;74height: calc(100% - 22px);75overflow: auto;76}7778