blob: 737641576aeefe5e64d1f769e1ba15721930ef21 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
<html>
<style>
#boxShadow {
height: 210px;
width: 290px;
border-radius: 11px;
box-shadow: 0px 0px 2px graytext inset;
}
#leftCover {
width: 30px;
height: 300px;
background-color: white;
position: absolute;
left: 0px;
top: 0px;
}
#rightCover {
width: 20px;
height: 300px;
background-color: white;
position: absolute;
top: 0px;
left: 280px;
}
</style>
<body>
<div id="boxShadow">test</div>
<div id="leftCover"></div>
<div id="rightCover"></div>
</body>
|