mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-01-23 20:49:00 -06:00
Web GUI from Klas Eskilson (three new modules: webgui, webbrowser and cefwebgui) Parallel connection refactorization Wormhole server added to the main repository Transfer function editor work from Cristoffer Särevall Update ghoul
20 lines
454 B
HTML
20 lines
454 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
html, body {
|
|
background-color: transparent;
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
#untransparent {
|
|
background-color: rgba(255, 255, 255, 0.5);
|
|
height: 100%;
|
|
width: 50%;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="untransparent"></div>
|
|
</body>
|
|
</html> |