mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
26 lines
372 B
HTML
26 lines
372 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
#container {
|
|
height: 300px;
|
|
width: 300px;
|
|
overflow:hidden;
|
|
border-radius:30px;
|
|
opacity: 0.5;
|
|
}
|
|
#inner {
|
|
width: 380px;
|
|
height: 260px;
|
|
background-color: #00ff00;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="container">
|
|
<div id="inner">
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|