|
|

楼主 |
发表于 2022-4-23 20:06
|
显示全部楼层
代码:
- <style type="text/css">
- .dish {
- margin: 50px auto 0;
- width: 200px;
- height: 140px;
- border-radius: 50%;
- display: flex;
- justify-content: center;
- align-items: center;
- background: #e0f0e9;
- box-shadow: 0 0 1px 1px #f90, 0 0 5px 1px rgba(20, 150,100, .4);
- filter: drop-shadow(2px 4px 8px #a7a7a7a7);
- }
- .egg {
- width: 80px;
- height: 100px;
- border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
- background: #fff;
- box-shadow: 0 2px 2px 0 rgba(0,0,0,.1) inset, 1px 5px 5px 0 rgba(0,0,0,.15);
- transform: rotate(15deg) skew(2deg);
- position: relative;
- }
- .egg::before {
- content: '';
- position: absolute;
- width:36px;
- height: 40px;
- left: calc(50% - 18px);
- top: 35px;
- background: #fc0;
- border-radius: 50%;
- box-shadow: 0 0 1px 1px #f90, 0 0 5px 1px rgba(245, 150,100, .1) inset;
- }
- </style>
- <div class="dish">
- <div class="egg"></div>
- </div>
复制代码
|
|