You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lychee/src/styles/_content.scss

253 lines
4.6 KiB

/**
* @copyright 2014 by Tobias Reich
*/
#content {
position: absolute;
padding: 50px 0px 33px 0px;
width: 100%;
min-height: calc(100% - 90px);
-webkit-overflow-scrolling: touch;
10 years ago
// Adds a gradient to the top
&::before {
content: '';
position: absolute;
left: 0px;
width: 100%;
height: 20px;
background: linear-gradient(to bottom, #262626, #222);
border-top: 1px solid #333;
}
// Removes the gradient when using the view
&.view::before {
display: none;
}
}
/* Photo ------------------------------------------------*/
.photo {
float: left;
display: inline-block;
width: 206px;
height: 206px;
10 years ago
margin: 30px 0 0 30px;
cursor: pointer;
10 years ago
img {
position: absolute;
width: 200px;
height: 200px;
background-color: #222;
border-radius: 2px;
border: 2px solid #ccc;
}
&:hover img,
&.active img {
box-shadow: 0 0 5px #005ecc;
}
&:active {
transition-duration: .1s;
transform: scale(.98);
}
}
/* Album ------------------------------------------------*/
.album {
float: left;
display: inline-block;
width: 204px;
height: 204px;
margin: 30px 0px 0px 30px;
cursor: pointer;
10 years ago
img {
position: absolute;
width: 200px;
height: 200px;
background-color: #222;
border-radius: 2px;
border: 2px solid #ccc;
&:first-child,
&:nth-child(2) {
transform: rotate(0) translateY(0) translateX(0);
opacity: 0;
}
}
&:hover img:first-child {
transform: rotate(-2deg) translateY(10px) translateX(-12px);
opacity: 1;
}
&:hover img:nth-child(2) {
transform: rotate(5deg) translateY(-8px) translateX(12px);
opacity: 1;
}
&:hover img,
&.active img {
box-shadow: 0 0 5px #005ecc;
}
}
/* Album/Photo Overlay ------------------------------------------------*/
.album .overlay,
.photo .overlay {
position: absolute;
width: 200px;
10 years ago
height: 200px;
margin: 2px;
background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 60%, rgba(0,0,0,0.5) 80%, rgba(0,0,0,0.9) 100%);
}
10 years ago
// No overlay for empty albums
10 years ago
.album img[data-type^='nonretina'] + .overlay {
10 years ago
background: rgba(0, 0, 0, 0.2);
}
10 years ago
.photo .overlay {
opacity: 0;
}
10 years ago
.photo:hover .overlay,
.photo.active .overlay {
opacity: 1;
}
10 years ago
.album .overlay h1,
.photo .overlay h1 {
min-height: 19px;
width: 185px;
10 years ago
margin: 152px 0 3px 15px;
color: #fff;
font-size: 16px;
font-weight: bold;
overflow: hidden;
}
10 years ago
.album .overlay a,
.photo .overlay a {
font-size: 11px;
color: #aaa;
}
10 years ago
.album .overlay a {
margin-left: 15px;
}
10 years ago
.photo .overlay a {
10 years ago
margin: 155px 0 5px 15px;
span { margin: 0 5px 0 0; }
}
/* Badges ------------------------------------------------*/
.album .badge,
.photo .badge {
position: absolute;
margin-top: -1px;
margin-left: 12px;
padding: 12px 7px 3px 7px;
10 years ago
background: linear-gradient(to bottom, #d64b4b 0%, #ab2c2c 100%);
box-shadow: 0 0 3px rgba(0, 0, 0, .8);
border-radius: 0 0 3px 3px;
border: 1px solid #fff;
border-top: none;
color: #fff;
font-size: 24px;
10 years ago
text-shadow: 0 1px 0 rgba(0, 0, 0, .4);
opacity: .9;
10 years ago
&::after {
content: '';
position: absolute;
margin-top: -12px;
margin-left: -26px;
width: 38px;
height: 5px;
background: linear-gradient(to bottom, rgba(0,0,0,1) 0%,rgba(0,0,0,0) 100%);
opacity: .4;
}
&:nth-child(2n) {
margin-left: 57px;
}
}
10 years ago
.album .badge.icon-star,
.photo .badge.icon-star {
padding: 12px 8px 3px 8px;
10 years ago
&::after { margin-left: -29px; }
}
10 years ago
.album .badge.icon-share,
.photo .badge.icon-share {
padding: 12px 6px 3px 8px;
10 years ago
&::after { margin-left: -31px; }
}
10 years ago
.album .badge.icon-time,
.photo .badge.icon-time {
padding: 12px 8px 3px 9px;
10 years ago
::after { margin-left: -29px; }
}
10 years ago
.album .badge.icon-reorder::after {
margin-left: -30px;
}
/* Divider ------------------------------------------------*/
.divider {
float: left;
width: 100%;
margin-top: 50px;
opacity: 0;
10 years ago
border-top: 1px solid rgba(255, 255, 255, .03);
box-shadow: 0 -1px 0 rgba(0, 0, 0, .25);
&:first-child {
margin-top: 0;
border-top: none;
}
h1 {
float: left;
margin: 20px 0 0 30px;
color: #fff;
font-size: 14px;
font-weight: bold;
text-shadow: 0 -1px 0 rgba(0, 0, 0, .5);
}
}
/* No Content ------------------------------------------------*/
.no_content {
position: absolute;
top: 50%;
left: 50%;
height: 160px;
width: 180px;
margin-top: -60px;
margin-left: -90px;
padding-top: 20px;
color: rgba(20, 20, 20, 1);
text-shadow: 0px 1px 0px rgba(255, 255, 255, .05);
text-align: center;
10 years ago
.icon {
font-size: 80px;
}
p {
font-size: 18px;
font-weight: bold;
}
}