This commit is contained in:
Flummi
2019-05-15 17:51:11 +00:00
parent be29734fa4
commit f790514cc3
17 changed files with 504 additions and 439 deletions

34
public/css/pageview.css Normal file
View File

@@ -0,0 +1,34 @@
div#pagewrapper {
display: block;
overflow: hidden;
}
div#p_items {
overflow: hidden;
height: 100%;
width: 100%;
}
div.p_item {
height: 100%;
width: 100%;
}
div.p_item > a {
width: 128px;
height: 128px;
box-shadow: 2px 2px 6px 0px rgb(0, 0, 0);
margin: 4px;
float: left;
outline: none;
box-shadow: inset 0 0 10px #4c4a4a;
}
div.p_item > a > img.thumb {
border: 2px solid black;
transition: .1s ease-out;
}
div.p_item > a > img.thumb:hover {
box-shadow: 0px 0px 0px 2px #dac8d2;
border-radius: 5px;
transition: .1s ease-in;
}