| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- .egg_container {
- position: fixed;
- width: 100%;
- height: 100%;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- z-index: 2;
- }
- #egg_container {
- display: none;
- }
- #egg_outer {
- z-index: 3;
- cursor: pointer;
- background-color: rgba(0,0,0,0.5);
- }
- #egg_inner {
- width: 50vw;
- max-width: 620px;
- max-height: 380px;
- padding: 50px;
- position: absolute;
- top: 50%;
- left: 50%;
- background-color: white;
- border-radius: 10px;
- transform: translate(-50%,-50%);
- -ms-transform: translate(-50%,-50%);
- z-index: 5;
- }
- #egg_content {
- text-align: center;
- }
- #egg_close {
- text-align: right;
- margin: 0;
- padding: 0;
- padding-bottom: 10px;
- cursor: pointer;
- }
|