12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- /** CUSTOMISER **/
- /* Conteneur principal du plugin customiser */
- .customiser {
-
- }
- .customiser .theme-cards {
- list-style-type: none;
- margin:0;
- padding:0;
- }
- .customiser .theme-cards > li {
- display: inline-block;
- vertical-align: top;
- margin:0;
- width: 33%;
- padding:15px;
- transition: transform 0.2s ease-in-out;
- }
- .customiser .theme-cards > li:hover {
- transform: scale(1.1);
- }
- .customiser .theme-card > label {
- cursor: pointer;
- }
- .customiser .theme-card {
- position: relative;
- width: 100%;
- cursor: pointer;
- display: block;
- -webkit-transition: all .2s ease-out;
- transition: all .2s ease-out;
- height: 0;
- padding-bottom: 74.5%;
- background-color: #E5E9EF;
- border-radius: 8px;
- -webkit-box-shadow: 0 25px 20px -20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 0, 0, 0.06);
- box-shadow: 0 25px 20px -20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 0, 0, 0.06);
- -webkit-transition: all .5s ease-out;
- }
- .customiser .theme-card img {
- border-radius: 8px;
- max-width: 100%;
- }
|