This commit is contained in:
Flummi
2019-05-19 01:45:45 +00:00
parent 1ba52a8361
commit 2a5651c00a
9 changed files with 169 additions and 119 deletions

View File

@ -1,29 +1,29 @@
.close {
div.close {
position: fixed;
right: 21px;
top: 86px;
width: 48px;
cursor: pointer;
height: 48px;
opacity: 0.8;
background-color: rgba(0,0,0,0.5);
width: 48px;
opacity: .5;
border-radius: 10px;
z-index: 90;
top: 80px;
right: 10px;
}
.close:hover {
opacity: 1;
div.close:hover {
opacity: .9;
box-shadow: 0px 0px 0px 2px #dac8d2;
border-radius: 10px;
transition: .1s ease-in;
}
.close:before, .close:after {
div.close:before {
content: '';
clip-path: polygon(20% 0%, 0% 20%, 30% 50%, 0% 80%, 20% 100%, 50% 70%, 80% 100%, 100% 80%, 70% 50%, 100% 20%, 80% 0%, 50% 30%);
position: absolute;
left: 23px;
top: 3px;
content: ' ';
height: 40px;
width: 2px;
background-color: #333;
}
.close:before {
transform: rotate(45deg);
}
.close:after {
transform: rotate(-45deg);
top: 7%;
right: 7%;
height: 41px;
width: 41px;
background-color: rgba(255, 255, 255, .5);
}

View File

@ -26,3 +26,6 @@ div.i_item {
max-height: 100%;
max-width: 100%;
}
.item:hover {
background-color: rgba(0, 0, 0, 0.8);
}

View File

@ -10,7 +10,6 @@ div#p_items {
}
div.p_item {
height: 100%;
width: 100%;
}