lychee/assets/css/modules/mediaquery.css
Tobias Reich dd2f6ebc77 V2.0
- All new redefined interface
- Faster animations and transitions
- Import from Dropbox
- Import from Server
- Download public albums
- Several sorting options
- Installation assistent
- Infobox and description for albums
- Faster loading and improved performance
- Better file handling and upload
- Album covers are chosen intelligent
- Prettier URLs
- Massive changes under the hood
- IPTC support (Headline and Caption)
- EXIF Orientation support

How to update:
1. Replace all files, excluding `uploads/`
2. Open Lychee and enter your database details
2014-01-22 11:12:51 +01:00

61 lines
1.0 KiB
CSS

/**
* @name mediaquery.css
* @author Tobias Reich
* @copyright 2014 by Tobias Reich
*/
@media only screen and (max-width: 900px) {
#title {
margin: 0px 20% !important;
width: 40% !important;
}
#title.view {
margin: 0px 20% !important;
width: 60% !important;
}
#title span {
display: none !important;
}
}
@media only screen and (max-width: 640px) {
#title {
display: none !important;
}
#title.view {
display: block !important;
width: 70% !important;
margin: 0px 20% 0px 10% !important;
}
#button_move {
display: none !important;
}
#button_archive {
display: none !important;
}
.center {
top: 0px !important;
left: 0px !important;
}
.album, .photo {
margin: 40px 0px 0px 50px !important;
}
.message {
position: fixed !important;
width: 100% !important;
height: 100% !important;
margin: 1px 0px 0px 0px !important;
border-radius: 0px !important;
/* Animation */
-webkit-animation: moveUp .3s !important;
-moz-animation: moveUp .3s !important;
animation: moveUp .3s !important;
}
}