| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834 |
- .gallery-thumbnail {
- max-width: 100%;
- height: auto; }
- .grid-sizer, .grid-item {
- width: 20%; }
- .grid-item figure,
- .grid-item > div {
- margin: 0;
- margin: 0.4rem; }
- /* masonry grid media queries */
- @media screen and (max-width: 2200px) {
- .grid-sizer, .grid-item {
- width: 20%; } }
- @media screen and (max-width: 1800px) {
- .grid-sizer, .grid-item {
- width: 30%; } }
- @media screen and (max-width: 1600px) {
- .grid-sizer, .grid-item {
- width: 33.33%; } }
- @media screen and (max-width: 1224px) {
- .grid-sizer, .grid-item {
- width: 33.33%; } }
- @media screen and (max-width: 980px) {
- .grid-sizer, .grid-item {
- width: 50%; } }
- @media screen and (max-width: 720px) {
- .grid-sizer, .grid-item {
- width: 50%; } }
- @media screen and (max-width: 480px) {
- .grid-sizer, .grid-item {
- width: 100%; } }
- /* Gallery hover effects */
- .grid-hover {
- position: relative;
- margin: 0 auto;
- padding: 1em 0 4em;
- list-style: none; }
- .grid-hover figure {
- position: relative;
- overflow: hidden;
- margin: 10px 1%;
- min-width: 320px;
- max-width: 480px;
- max-height: 360px;
- background: #3085a3;
- text-align: center;
- cursor: pointer; }
- .grid-hover figure img {
- position: relative;
- display: block;
- min-height: 100%;
- max-width: 100%;
- opacity: 0.8; }
- .grid-hover figure figcaption {
- padding: 2em;
- color: #fff;
- text-transform: uppercase;
- font-size: 1.25em;
- -webkit-backface-visibility: hidden;
- backface-visibility: hidden;
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%; }
- .grid-hover figure figcaption::before {
- pointer-events: none; }
- .grid-hover figure figcaption::after {
- pointer-events: none; }
- .grid-hover figure figcaption > a {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- z-index: 1000;
- text-indent: 200%;
- white-space: nowrap;
- font-size: 0;
- opacity: 0; }
- .grid-hover figure h2 {
- word-spacing: -0.15em;
- font-weight: 300;
- margin: 0; }
- .grid-hover figure h2 span {
- font-weight: 800; }
- .grid-hover figure p {
- margin: 0;
- letter-spacing: 1px;
- font-size: 68.5%; }
- /*---------------*/
- /***** Lily *****/
- /*---------------*/
- figure.effect-lily img {
- max-width: none;
- width: -webkit-calc(100% + 50px);
- width: calc(100% + 50px);
- opacity: 0.7;
- transition: opacity 0.35s, transform 0.35s;
- transform: translate3d(-40px, 0, 0); }
- figure.effect-lily figcaption {
- text-align: left; }
- figure.effect-lily figcaption > div {
- position: absolute;
- bottom: 0;
- left: 0;
- padding: 2em;
- width: 100%;
- height: 50%; }
- figure.effect-lily h2 {
- transform: translate3d(0, 40px, 0);
- transition: transform 0.35s; }
- figure.effect-lily p {
- transform: translate3d(0, 40px, 0);
- color: rgba(255, 255, 255, 0.8);
- opacity: 0;
- transition: opacity 0.2s, transform 0.35s; }
- figure.effect-lily:hover img {
- opacity: 1;
- transform: translate3d(0, 0, 0); }
- figure.effect-lily:hover p {
- opacity: 1;
- transform: translate3d(0, 0, 0);
- -webkit-transition-delay: 0.05s;
- transition-delay: 0.05s;
- -webkit-transition-duration: 0.35s;
- transition-duration: 0.35s; }
- figure.effect-lily:hover h2 {
- transform: translate3d(0, 0, 0); }
- /*---------------*/
- /***** Sadie *****/
- /*---------------*/
- figure.effect-sadie figcaption::before {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background: -webkit-linear-gradient(top, rgba(72, 76, 97, 0) 0%, rgba(72, 76, 97, 0.8) 75%);
- background: linear-gradient(to bottom, rgba(72, 76, 97, 0) 0%, rgba(72, 76, 97, 0.8) 75%);
- content: '';
- opacity: 0;
- transform: translate3d(0, 50%, 0);
- transition: opacity 0.35s, transform 0.35s; }
- figure.effect-sadie h2 {
- position: absolute;
- top: 50%;
- left: 0;
- width: 100%;
- color: #484c61;
- transition: transform 0.35s, color 0.35s;
- transform: translate3d(0, -50%, 0); }
- figure.effect-sadie p {
- transition: opacity 0.35s, transform 0.35s;
- position: absolute;
- bottom: 0;
- left: 0;
- padding: 2em;
- width: 100%;
- opacity: 0;
- transform: translate3d(0, 10px, 0); }
- figure.effect-sadie:hover h2 {
- color: #fff;
- transform: translate3d(0, -50%, 0) translate3d(0, -40px, 0); }
- figure.effect-sadie:hover figcaption::before {
- opacity: 1;
- transform: translate3d(0, 0, 0); }
- figure.effect-sadie:hover p {
- opacity: 1;
- transform: translate3d(0, 0, 0); }
- /*---------------*/
- /***** Roxy *****/
- /*---------------*/
- figure.effect-roxy {
- background: -webkit-linear-gradient(45deg, #ff89e9 0%, #05abe0 100%);
- background: linear-gradient(45deg, #ff89e9 0%, #05abe0 100%); }
- figure.effect-roxy img {
- max-width: none;
- width: -webkit-calc(100% + 60px);
- width: calc(100% + 60px);
- transition: opacity 0.35s, transform 0.35s;
- transform: translate3d(-50px, 0, 0); }
- figure.effect-roxy figcaption {
- padding: 3em;
- text-align: left; }
- figure.effect-roxy figcaption::before {
- position: absolute;
- top: 30px;
- right: 30px;
- bottom: 30px;
- left: 30px;
- border: 1px solid #fff;
- content: '';
- opacity: 0;
- transition: opacity 0.35s, transform 0.35s;
- transform: translate3d(-20px, 0, 0); }
- figure.effect-roxy h2 {
- padding: 30% 0 10px 0; }
- figure.effect-roxy p {
- opacity: 0;
- transition: opacity 0.35s, transform 0.35s;
- transform: translate3d(-10px, 0, 0); }
- figure.effect-roxy:hover img {
- opacity: 0.7;
- transform: translate3d(0, 0, 0); }
- figure.effect-roxy:hover figcaption::before {
- opacity: 1;
- transform: translate3d(0, 0, 0); }
- figure.effect-roxy:hover p {
- opacity: 1;
- transform: translate3d(0, 0, 0); }
- /*---------------*/
- /***** Bubba *****/
- /*---------------*/
- figure.effect-bubba {
- background: #9e5406; }
- figure.effect-bubba img {
- opacity: 0.7;
- transition: opacity 0.35s; }
- figure.effect-bubba:hover img {
- opacity: 0.4; }
- figure.effect-bubba:hover figcaption::before {
- opacity: 1;
- transform: scale(1); }
- figure.effect-bubba:hover figcaption::after {
- opacity: 1;
- transform: scale(1); }
- figure.effect-bubba:hover h2 {
- opacity: 1;
- transform: translate3d(0, 0, 0); }
- figure.effect-bubba:hover p {
- opacity: 1;
- transform: translate3d(0, 0, 0); }
- figure.effect-bubba figcaption::before {
- position: absolute;
- top: 30px;
- right: 30px;
- bottom: 30px;
- left: 30px;
- content: '';
- opacity: 0;
- transition: opacity 0.35s, transform 0.35s;
- border-top: 1px solid #fff;
- border-bottom: 1px solid #fff;
- transform: scale(0, 1); }
- figure.effect-bubba figcaption::after {
- position: absolute;
- top: 30px;
- right: 30px;
- bottom: 30px;
- left: 30px;
- content: '';
- opacity: 0;
- transition: opacity 0.35s, transform 0.35s;
- border-right: 1px solid #fff;
- border-left: 1px solid #fff;
- transform: scale(1, 0); }
- figure.effect-bubba h2 {
- padding-top: 30%;
- transition: transform 0.35s;
- transform: translate3d(0, -20px, 0); }
- figure.effect-bubba p {
- padding: 20px 2.5em;
- opacity: 0;
- transition: opacity 0.35s, transform 0.35s;
- transform: translate3d(0, 20px, 0); }
- /*---------------*/
- /***** Romeo *****/
- /*---------------*/
- figure.effect-romeo {
- -webkit-perspective: 1000px;
- perspective: 1000px; }
- figure.effect-romeo img {
- transition: opacity 0.35s, transform 0.35s;
- transform: translate3d(0, 0, 300px); }
- figure.effect-romeo:hover img {
- opacity: 0.6;
- transform: translate3d(0, 0, 0); }
- figure.effect-romeo:hover figcaption::before {
- opacity: 0.5;
- transform: translate3d(-50%, -50%, 0) rotate(45deg); }
- figure.effect-romeo:hover figcaption::after {
- opacity: 0.5;
- transform: translate3d(-50%, -50%, 0) rotate(-45deg); }
- figure.effect-romeo:hover h2 {
- transform: translate3d(0, -50%, 0) translate3d(0, -100%, 0); }
- figure.effect-romeo:hover p {
- transform: translate3d(0, -50%, 0) translate3d(0, 100%, 0); }
- figure.effect-romeo figcaption::before {
- position: absolute;
- top: 50%;
- left: 50%;
- width: 80%;
- height: 1px;
- background: #fff;
- content: '';
- transition: opacity 0.35s, transform 0.35s;
- transform: translate3d(-50%, -50%, 0); }
- figure.effect-romeo figcaption::after {
- position: absolute;
- top: 50%;
- left: 50%;
- width: 80%;
- height: 1px;
- background: #fff;
- content: '';
- transition: opacity 0.35s, transform 0.35s;
- transform: translate3d(-50%, -50%, 0); }
- figure.effect-romeo h2 {
- position: absolute;
- top: 50%;
- left: 0;
- width: 100%;
- transition: transform 0.35s;
- transform: translate3d(0, -50%, 0) translate3d(0, -150%, 0); }
- figure.effect-romeo p {
- position: absolute;
- top: 50%;
- left: 0;
- width: 100%;
- transition: transform 0.35s;
- padding: 0.25em 2em;
- transform: translate3d(0, -50%, 0) translate3d(0, 150%, 0); }
- /*---------------*/
- /***** Layla *****/
- /*---------------*/
- figure.effect-layla {
- background: #18a367; }
- figure.effect-layla img {
- height: 390px;
- transform: translate3d(0, -30px, 0);
- transition: opacity 0.35s, transform 0.35s; }
- figure.effect-layla figcaption {
- padding: 3em; }
- figure.effect-layla figcaption::before {
- position: absolute;
- content: '';
- opacity: 0;
- top: 50px;
- right: 30px;
- bottom: 50px;
- left: 30px;
- border-top: 1px solid #fff;
- border-bottom: 1px solid #fff;
- transform: scale(0, 1);
- -webkit-transform-origin: 0 0;
- transform-origin: 0 0;
- transition: opacity 0.35s, transform 0.35s; }
- figure.effect-layla figcaption::after {
- position: absolute;
- content: '';
- opacity: 0;
- top: 30px;
- right: 50px;
- bottom: 30px;
- left: 50px;
- border-right: 1px solid #fff;
- border-left: 1px solid #fff;
- transform: scale(1, 0);
- -webkit-transform-origin: 100% 0;
- transform-origin: 100% 0;
- transition: opacity 0.35s, transform 0.35s; }
- figure.effect-layla h2 {
- padding-top: 26%;
- transition: transform 0.35s;
- transform: translate3d(0, -30px, 0); }
- figure.effect-layla p {
- padding: 0.5em 2em;
- text-transform: none;
- opacity: 0;
- transform: translate3d(0, -10px, 0);
- transition: opacity 0.35s, transform 0.35s; }
- figure.effect-layla:hover img {
- opacity: 0.7;
- transform: translate3d(0, 0, 0);
- -webkit-transition-delay: 0.15s;
- transition-delay: 0.15s; }
- figure.effect-layla:hover figcaption::before {
- opacity: 1;
- transform: scale(1); }
- figure.effect-layla:hover figcaption::after {
- opacity: 1;
- transform: scale(1);
- -webkit-transition-delay: 0.15s;
- transition-delay: 0.15s; }
- figure.effect-layla:hover h2 {
- opacity: 1;
- transform: translate3d(0, 0, 0);
- -webkit-transition-delay: 0.15s;
- transition-delay: 0.15s; }
- figure.effect-layla:hover p {
- opacity: 1;
- transform: translate3d(0, 0, 0);
- -webkit-transition-delay: 0.15s;
- transition-delay: 0.15s; }
- /*---------------*/
- /***** Honey *****/
- /*---------------*/
- figure.effect-honey {
- background: #4a3753; }
- figure.effect-honey img {
- opacity: 0.9;
- transition: opacity 0.35s; }
- figure.effect-honey:hover img {
- opacity: 0.5; }
- figure.effect-honey:hover figcaption::before {
- opacity: 1;
- transform: translate3d(0, 0, 0); }
- figure.effect-honey:hover h2 {
- opacity: 1;
- transform: translate3d(0, 0, 0); }
- figure.effect-honey:hover h2 i {
- opacity: 1;
- transform: translate3d(0, 0, 0); }
- figure.effect-honey figcaption::before {
- position: absolute;
- bottom: 0;
- left: 0;
- width: 100%;
- height: 10px;
- background: #fff;
- content: '';
- transform: translate3d(0, 10px, 0);
- transition: transform 0.35s; }
- figure.effect-honey h2 {
- position: absolute;
- bottom: 0;
- left: 0;
- padding: 1em 1.5em;
- width: 100%;
- text-align: left;
- transform: translate3d(0, -30px, 0);
- transition: transform 0.35s; }
- figure.effect-honey h2 i {
- font-style: normal;
- opacity: 0;
- transition: opacity 0.35s, transform 0.35s;
- transform: translate3d(0, -30px, 0); }
- /*---------------*/
- /***** Oscar *****/
- /*---------------*/
- figure.effect-oscar {
- background: -webkit-linear-gradient(45deg, #22682a 0%, #9b4a1b 40%, #3a342a 100%);
- background: linear-gradient(45deg, #22682a 0%, #9b4a1b 40%, #3a342a 100%); }
- figure.effect-oscar img {
- opacity: 0.9;
- transition: opacity 0.35s; }
- figure.effect-oscar figcaption {
- padding: 3em;
- background-color: rgba(58, 52, 42, 0.7);
- transition: background-color 0.35s; }
- figure.effect-oscar figcaption::before {
- position: absolute;
- top: 30px;
- right: 30px;
- bottom: 30px;
- left: 30px;
- border: 1px solid #fff;
- content: '';
- opacity: 0;
- transition: opacity 0.35s, transform 0.35s;
- transform: scale(0); }
- figure.effect-oscar h2 {
- margin: 20% 0 10px 0;
- transition: transform 0.35s;
- transform: translate3d(0, 100%, 0); }
- figure.effect-oscar p {
- opacity: 0;
- transition: opacity 0.35s, transform 0.35s;
- transform: scale(0); }
- figure.effect-oscar:hover h2 {
- transform: translate3d(0, 0, 0); }
- figure.effect-oscar:hover figcaption {
- background-color: rgba(58, 52, 42, 0); }
- figure.effect-oscar:hover figcaption::before {
- opacity: 1;
- transform: scale(1); }
- figure.effect-oscar:hover p {
- opacity: 1;
- transform: scale(1); }
- figure.effect-oscar:hover img {
- opacity: 0.4; }
- /*---------------*/
- /***** Marley *****/
- /*---------------*/
- figure.effect-marley figcaption {
- text-align: right; }
- figure.effect-marley h2 {
- position: absolute;
- right: 30px;
- left: 30px;
- padding: 10px 0;
- top: 30px;
- transition: transform 0.35s;
- transform: translate3d(0, 20px, 0); }
- figure.effect-marley h2::after {
- position: absolute;
- top: 100%;
- left: 0;
- width: 100%;
- height: 4px;
- background: #fff;
- content: '';
- transform: translate3d(0, 40px, 0);
- opacity: 0;
- transition: opacity 0.35s, transform 0.35s; }
- figure.effect-marley p {
- position: absolute;
- right: 30px;
- left: 30px;
- padding: 10px 0;
- bottom: 30px;
- line-height: 1.5;
- transform: translate3d(0, 100%, 0);
- opacity: 0;
- transition: opacity 0.35s, transform 0.35s; }
- figure.effect-marley:hover h2 {
- transform: translate3d(0, 0, 0); }
- figure.effect-marley:hover h2::after {
- opacity: 1;
- transform: translate3d(0, 0, 0); }
- figure.effect-marley:hover p {
- opacity: 1;
- transform: translate3d(0, 0, 0); }
- /*---------------*/
- /***** Ruby *****/
- /*---------------*/
- figure.effect-ruby {
- background-color: #17819c; }
- figure.effect-ruby img {
- opacity: 0.7;
- transition: opacity 0.35s, transform 0.35s;
- transform: scale(1.15); }
- figure.effect-ruby:hover img {
- opacity: 0.5;
- transform: scale(1); }
- figure.effect-ruby:hover h2 {
- transform: translate3d(0, 0, 0); }
- figure.effect-ruby:hover p {
- opacity: 1;
- transform: translate3d(0, 0, 0) scale(1); }
- figure.effect-ruby h2 {
- margin-top: 20%;
- transition: transform 0.35s;
- transform: translate3d(0, 20px, 0); }
- figure.effect-ruby p {
- margin: 1em 0 0;
- padding: 3em;
- border: 1px solid #fff;
- opacity: 0;
- transition: opacity 0.35s, transform 0.35s;
- transform: translate3d(0, 20px, 0) scale(1.1); }
- /*---------------*/
- /***** Milo *****/
- /*---------------*/
- figure.effect-milo {
- background: #2e5d5a; }
- figure.effect-milo img {
- max-width: none;
- width: -webkit-calc(100% + 60px);
- width: calc(100% + 60px);
- opacity: 1;
- transition: opacity 0.35s, transform 0.35s;
- transform: translate3d(-30px, 0, 0) scale(1.12);
- -webkit-backface-visibility: hidden;
- backface-visibility: hidden; }
- figure.effect-milo:hover img {
- opacity: 0.5;
- transform: translate3d(0, 0, 0) scale(1); }
- figure.effect-milo:hover p {
- opacity: 1;
- transform: translate3d(0, 0, 0); }
- figure.effect-milo h2 {
- position: absolute;
- right: 0;
- bottom: 0;
- padding: 1em 1.2em; }
- figure.effect-milo p {
- padding: 0 10px 0 0;
- width: 50%;
- border-right: 1px solid #fff;
- text-align: right;
- opacity: 0;
- transition: opacity 0.35s, transform 0.35s;
- transform: translate3d(-40px, 0, 0); }
- /*---------------*/
- /***** Dexter *****/
- /*---------------*/
- figure.effect-dexter {
- background: -webkit-linear-gradient(top, #258dc8 0%, #683c13 100%);
- background: linear-gradient(to bottom, #258dc8 0%, #683c13 100%); }
- figure.effect-dexter img {
- transition: opacity 0.35s; }
- figure.effect-dexter:hover img {
- opacity: 0.4; }
- figure.effect-dexter:hover figcaption::after {
- transform: translate3d(0, 0, 0); }
- figure.effect-dexter:hover p {
- opacity: 1;
- transform: translate3d(0, 0, 0); }
- figure.effect-dexter figcaption {
- padding: 3em;
- text-align: left; }
- figure.effect-dexter figcaption::after {
- position: absolute;
- right: 30px;
- bottom: 30px;
- left: 30px;
- height: -webkit-calc(50% - 30px);
- height: calc(50% - 30px);
- border: 7px solid #fff;
- content: '';
- transition: transform 0.35s;
- transform: translate3d(0, -100%, 0); }
- figure.effect-dexter p {
- position: absolute;
- right: 60px;
- bottom: 60px;
- left: 60px;
- opacity: 0;
- transition: opacity 0.35s, transform 0.35s;
- transform: translate3d(0, -100px, 0); }
- /*---------------*/
- /***** Sarah *****/
- /*---------------*/
- figure.effect-sarah {
- background: #42b078; }
- figure.effect-sarah img {
- max-width: none;
- width: -webkit-calc(100% + 20px);
- width: calc(100% + 20px);
- transition: opacity 0.35s, transform 0.35s;
- transform: translate3d(-10px, 0, 0);
- -webkit-backface-visibility: hidden;
- backface-visibility: hidden; }
- figure.effect-sarah:hover img {
- opacity: 0.4;
- transform: translate3d(0, 0, 0); }
- figure.effect-sarah:hover h2::after {
- transform: translate3d(0, 0, 0); }
- figure.effect-sarah:hover p {
- opacity: 1;
- transform: translate3d(0, 0, 0); }
- figure.effect-sarah figcaption {
- text-align: left; }
- figure.effect-sarah h2 {
- position: relative;
- overflow: hidden;
- padding: 0.5em 0; }
- figure.effect-sarah h2::after {
- position: absolute;
- bottom: 0;
- left: 0;
- width: 100%;
- height: 3px;
- background: #fff;
- content: '';
- transition: transform 0.35s;
- transform: translate3d(-100%, 0, 0); }
- figure.effect-sarah p {
- padding: 1em 0;
- opacity: 0;
- transition: opacity 0.35s, transform 0.35s;
- transform: translate3d(100%, 0, 0); }
- /*---------------*/
- /***** Zoe *****/
- /*---------------*/
- figure.effect-zoe figcaption {
- top: auto;
- bottom: 0;
- padding: 1em;
- height: 3.75em;
- background: #fff;
- color: #3c4a50;
- transition: transform 0.35s;
- transform: translate3d(0, 100%, 0); }
- figure.effect-zoe h2 {
- float: left;
- transition: transform 0.35s;
- transform: translate3d(0, 200%, 0);
- display: inline-block; }
- figure.effect-zoe p.icon-links a {
- float: right;
- color: #3c4a50;
- font-size: 1.4em;
- transition: transform 0.35s;
- transform: translate3d(0, 200%, 0); }
- figure.effect-zoe p.icon-links a span::before {
- display: inline-block;
- padding: 8px 10px;
- font-family: 'feathericons';
- speak: none;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale; }
- figure.effect-zoe:hover p.icon-links a {
- transform: translate3d(0, 0, 0); }
- figure.effect-zoe:hover p.icon-links a:hover {
- color: #252d31; }
- figure.effect-zoe:hover p.icon-links a:focus {
- color: #252d31; }
- figure.effect-zoe:hover p.icon-links a:nth-child(3) {
- -webkit-transition-delay: 0.1s;
- transition-delay: 0.1s; }
- figure.effect-zoe:hover p.icon-links a:nth-child(2) {
- -webkit-transition-delay: 0.15s;
- transition-delay: 0.15s; }
- figure.effect-zoe:hover p.icon-links a:first-child {
- -webkit-transition-delay: 0.2s;
- transition-delay: 0.2s; }
- figure.effect-zoe:hover p.description {
- opacity: 1; }
- figure.effect-zoe:hover figcaption {
- transform: translate3d(0, 0, 0); }
- figure.effect-zoe:hover h2 {
- transform: translate3d(0, 0, 0);
- -webkit-transition-delay: 0.05s;
- transition-delay: 0.05s; }
- figure.effect-zoe p.description {
- position: absolute;
- bottom: 8em;
- padding: 2em;
- color: #fff;
- text-transform: none;
- font-size: 90%;
- opacity: 0;
- transition: opacity 0.35s;
- -webkit-backface-visibility: hidden; }
- .icon-eye::before {
- content: '\e000'; }
- .icon-paper-clip::before {
- content: '\e001'; }
- .icon-heart::before {
- content: '\e024'; }
- /*---------------*/
- /***** Chico *****/
- /*---------------*/
- figure.effect-chico img {
- transition: opacity 0.35s, transform 0.35s;
- transform: scale(1.12); }
- figure.effect-chico:hover img {
- opacity: 0.5;
- transform: scale(1); }
- figure.effect-chico:hover figcaption::before {
- opacity: 1;
- transform: scale(1); }
- figure.effect-chico:hover p {
- opacity: 1;
- transform: scale(1); }
- figure.effect-chico figcaption {
- padding: 3em; }
- figure.effect-chico figcaption::before {
- position: absolute;
- top: 30px;
- right: 30px;
- bottom: 30px;
- left: 30px;
- border: 1px solid #fff;
- content: '';
- transform: scale(1.1);
- opacity: 0;
- transition: opacity 0.35s, transform 0.35s; }
- figure.effect-chico p {
- opacity: 0;
- transition: opacity 0.35s, transform 0.35s;
- margin: 0 auto;
- max-width: 200px;
- transform: scale(1.5); }
- figure.effect-chico h2 {
- padding: 20% 0 20px 0; }
- @media screen and (max-width: 50em) {
- .content {
- padding: 0 10px; }
- .grid figure {
- display: inline-block;
- float: none;
- margin: 10px auto;
- width: 100%; } }
|