зеркало из https://github.com/mozilla/gecko-dev.git
38 строки
672 B
HTML
38 строки
672 B
HTML
<html>
|
|
<head>
|
|
<style>
|
|
#boxShadow {
|
|
width: 152px;
|
|
height: 19.5px;
|
|
box-shadow: 0px 0px 1px #3b99FC inset,
|
|
0px 0px 4px 1px #3B99FC,
|
|
0px 0px 1.5px 1px #3B99FC;
|
|
border-radius: 10000px 0px 0px 10000px;
|
|
position: absolute;
|
|
}
|
|
|
|
#leftCover {
|
|
width: 30px;
|
|
height: 50px;
|
|
background-color: white;
|
|
position: absolute;
|
|
left: 0px;
|
|
top: 0px;
|
|
}
|
|
|
|
#rightCover {
|
|
width: 20px;
|
|
height: 120px;
|
|
background-color: white;
|
|
position: absolute;
|
|
top: 0px;
|
|
left: 150px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<html>
|
|
<div id="boxShadow"></div>
|
|
<div id="leftCover"></div>
|
|
<div id="rightCover"></div>
|
|
</html>
|