| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- #con_top_menu {
- height:146px;
- }
- #con_top_banner {
- height: 225px;
- }
- img {
- opacity: 1;
- transition: opacity 0.3s;
- }
- img[data-src] {
- opacity: 0;
- }
- /* magnific */
- /* overlay at start */
- .mfp-fade.mfp-bg {
- opacity: 0;
- -webkit-transition: all 0.15s ease-out;
- -moz-transition: all 0.15s ease-out;
- transition: all 0.15s ease-out;
- }
- /* overlay animate in */
- .mfp-fade.mfp-bg.mfp-ready {
- opacity: 0.8;
- }
- /* overlay animate out */
- .mfp-fade.mfp-bg.mfp-removing {
- opacity: 0;
- }
- /* content at start */
- .mfp-fade.mfp-wrap .mfp-content {
- opacity: 0;
- -webkit-transition: all 0.15s ease-out;
- -moz-transition: all 0.15s ease-out;
- transition: all 0.15s ease-out;
- }
- /* content animate it */
- .mfp-fade.mfp-wrap.mfp-ready .mfp-content {
- opacity: 1;
- }
- /* content animate out */
- .mfp-fade.mfp-wrap.mfp-removing .mfp-content {
- opacity: 0;
- }
- /*
- a .stripe {
- color:white;
- background: repeating-linear-gradient(45deg,#606dbc, #606dbc 10px, #465298 10px, #465298 20px);
- }
- */
|