Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Для HTML
- в начало HTML части
- <div class="wrapper" style="z-index: 10001 !important;">
- <input id="close-button" class="hidden-input" type="checkbox">
- <div class="inner">
- <label for="close-button" class="close-wrapper"></label>
- В конце HTML части закрывающие теги
- </div>
- </div>
- Добавить в CSS часть
- .hidden-input {
- height: 0;
- width: 0;
- position: absolute;
- opacity: 0;
- }
- .hidden-input:checked ~ .inner {
- display: none;
- }
- .close-wrapper {
- position: absolute;
- top: -28px;
- right: 0;
- width: 32px;
- height: 28px;
- background: url("data:image/svg+xml,%3Csvg width='10' height='10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l8 8M1 9l8-8' stroke='%23fff' stroke-width='2' stroke-linecap='round'%3E%3C/path%3E%3C/svg%3E");
- background-repeat: no-repeat;
- background-position: center;
- z-index: 3;
- border-radius: 6px 6px 0 0;
- background-color: rgba(0,0,0,.2);
- cursor: pointer;
- }
Advertisement
Add Comment
Please, Sign In to add comment