Files
OpenSpace/modules/webgui/web/transparent_test.html
Emil Axelsson d64a0df5f6 Feature/thesis work merge (#566)
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
2018-03-20 09:30:59 +01:00

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>