This repository has been archived on 2020-04-18. You can view files and clone it, but cannot push or open issues or pull requests.
photo/static/css/polaroid-gallery.css

61 lines
1.0 KiB
CSS

body {
background-color: #F2EBE2;
}
.fullscreen {
width: 100%;
height: 100%;
overflow: hidden;
margin: 0;
padding: 0;
}
figure {
width: 200px;
position: absolute;
padding: 10px;
margin: 0 auto;
text-align: center;
background-color: white;
-webkit-transition: all 0.6s;
-moz-transition: all 0.6s;
transition: all 0.6s;
cursor: pointer;
}
figure img {
height: auto;
max-width: 100%;
margin: 0 auto;
margin-bottom: 15px;
}
figure figcaption {
font-family: Comic Sans, Comic Sans MS, cursive;
color: #8F8476;
}
.navbar {
position: fixed;
bottom: 0;
width: 100%;
padding: 10px;
text-align: center;
background-color: black;
z-index: 999;
}
button {
background-color: transparent;
padding: 10px 24px;
color: #ffffff;
border: 2px solid black;
-webkit-transition-duration: 0.4s;
transition-duration: 0.4s;
transition: 0.4s;
}
button:hover {
background-color: #f44336;
color: white;
}